public static void main(String[] args) {
// smb://{user}:{password}@{host}/{path},
String urls = "smb://xxx:xxx@192.168.1.xxx/CA/ccc";
SmbFile file = null;
try {
file = new SmbFile(urls);
SmbFile[] smbFiles = file.listFiles();
System.out.println();
} catch (Exception e) {
e.printStackTrace();
}
}
jcifs-1.3.17.jar