0
我正在寫一個簡單的android代碼,使用jcifs在我的SMB文件夾中創建一個文件。但我得到以下例外。jcifs.smb.SmbException:連接到系統的設備無法正常工作
jcifs.smb.SmbException:連接到系統的設備無法運行。
以下是我的代碼:
try{
String user = "X";
String pass ="X";
String sharedFolder="X";
String path="X/"+sharedFolder+"/test.txt";
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("X",user, pass);
SmbFile smbFile = new SmbFile(path,auth);
SmbFileOutputStream smbfos = new SmbFileOutputStream(smbFile);
smbfos.write("testing....and writing to a file".getBytes());
System.out.println("completed ...nice !");
}catch(Exception e){
e.printStackTrace();
}