smbj - SMB2/SMB3 client library for Java
Getting SMBJ
To get SMBJ, you have two options:
-
Add a dependency to SMBJ to your project.
-
Build SMBJ yourself.
And, if you want, you can also run the SMBJ examples.
Binary releases of SMBJ are not provided here, but you can download it straight from the Maven Central repository if you want to.
Examples
A - Listing Files on a Share/Folder
SMBClient client = new SMBClient();
try (Connection connection = client.connect("SERVERNAME")) {
AuthenticationContext ac = new AuthenticationContext("USERNAME", "PASSWORD".toCharArray(), "DOMAIN");
Session session = connection.authenticate(ac);
// Connect to Share
try (DiskShare share = (DiskShare) session.connectShare("SHARENAME")) {
for (FileIdBothDirectoryInformation f : share.list("FOLDER", "*.TXT")) {
System.out.println("File : " + f.getFileName());
}
}
}
B - Deleting a file
SMBClient client = new SMBClient(config);
try (Connection connection = client.connect("SERVERNAME")) {
AuthenticationContext ac = new AuthenticationContext("USERNAME", "PASSWORD".toCharArray(), "DOMAIN");
Session session = connection.authenticate(ac);
// Connect to Share
try (DiskShare share = (DiskShare) session.connectShare("SHARENAME")) {
share.rm("FILE");
}
}
C - Adjusting Timeout and Socket Timeout
SmbConfig config = SmbConfig.builder()
.withTimeout(120, TimeUnit.SECONDS) // Timeout sets Read, Write, and Transact timeouts (default is 60 seconds)
.withSoTimeout(180, TimeUnit.SECONDS) // Socket Timeout (default is 0 seconds, blocks forever)
.build();
SMBClient client = new SMBClient(config);
try (Connection connection = client.connect("SERVERNAME")) {
AuthenticationContext ac = new AuthenticationContext("USERNAME", "PASSWORD".toCharArray(), "DOMAIN");
Session session = connection.authenticate(ac);
// Connect to Share
try (DiskShare share = (DiskShare) session.connectShare("SHARENAME")) {
...
}
}
Frequently Asked Questions
SMBApiException
with the message STATUS_โฆโ (0xโฆโ)
. What am I doing wrong?
When I run my code I get an SMBJ is a low-level SMB client implementation.
Most file/directory operations result in a request being sent to the SMB server.
If the server responds to these requests with an error SMBJ will pass this error back to the calling code via an exception.
The STATUS_โฆโ
value is the error code the server sent back to the client.
It is considered out of scope for the SMBJ project to document each and every possible error condition that may occur when using the SMB protocol. Detailed information on these errors can be found in the SMB specification and the error code table. Some common errors are described below.
STATUS_ACCESS_DENIED
. How can I fix this?
When I try to open a file or directory my code fails with This error means that the file access youโve requested (the set of AccessMask
values) is not being allowed by the server for the user account you used to log in to the server.
Why this happens exactly depends on the precise set of AccessMask
values you specified and the access control list that has been set on the file or directory in question.
To resolve this, reduce the set of AccessMask
values down to just the access that you need.
For instance, if you only want to read the contents of the file use FILE_READ_DATA
instead of something more broad like GENERIC_READ
or GENERIC_ALL
.
The special MAXIMUM_ALLOWED
value can be used to ask the server to grant the full set of permissions that are allowed by the access control list.
You can then query the FileAccessInformation
information class to determine which set of permissions was granted by the server.
For more details please refer to the documentation on creating and opening files on MSDN.
STATUS_SHARING_VIOLATION
. What does this mean?
When I try to open a file or directory my code fails with A sharing violation error means that some other process has already opened the file or directory in question in a way that is incompatible with how youโre trying to open it. This could be your own program, a different program running on your machine, a program running on a different client machine or even a process on the SMB server itself like an indexing or virus scanning service.
The SMB protocol does allow multiple clients to open the same file at the same time, but they need to cooperate when doing so.
This is controlled by the set of SMB2ShareAccess
values that are passed to the open file calls.
When this set is empty, the SMB client requests exclusive access to the file.
Passing one or more values indicates that other clients may open the file for the specified operations as well.
For instance, if you open the file with only FILE_SHARE_READ
and successfully open the file, then other clients may open the file for reading as well.
If another client tries to open the file for writing, it will fail at that point with STATUS_SHARING_VIOLATION
as long as you have the file open.
For more details please refer to the documentation on creating and opening files on MSDN.
Depending on SMBJ
If youโre building your project using Maven, you can add the following dependency to the pom.xml
:
<dependency>
<groupId>com.hierynomus</groupId>
<artifactId>smbj</artifactId>
<version>0.11.5</version>
</dependency>
If your project is built using another build tool that uses the Maven Central repository, translate this dependency into the format used by your build tool.
Building SMBJ
-
Clone the SMBJ repository.
-
Ensure you have Java7 installed with the Unlimited strength Java Cryptography Extensions (JCE).
-
Run the command
./gradlew clean build
.
Specifications
The implementation is based on the following specifications:
Changelog
0.12.0 (2023-??-??)
-
Ensure we call flip() on Buffer to avoid Java8/9 compatibility issues (Fixes #705)
-
Do not send SNB2EncryptionCapabilities if the withEncryptData is set to false (Fixes #747)
-
Added Implementation-Version and Implementation-Name to MANIFEST.MF (Fixes #743)
-
Upgraded Gradle to 8.0.2
-
Bytes written by the SMB2Writer are now returned as long, correctly reporting on files >2GB (Fixes #740)
-
Reduce the amount of locking in Connection and DirectTcpTransport
-
Fixed Cannot resolve path exception in DFS by specifying the correct TargetHint (Fixes #419)
-
Fixed ClassCastException in TargetInfo (Fixes #712)