2016-10-08 80 views
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(); 
 
     }

回答

0

我得到了答案。 jar文件版本存在一些問題。故事的道德:使用jcifs的最新罐子

相關問題