jcifs.smb.SmbException:连接到系统的设备无法运行

时间:2016-10-08 19:20:04

标签: samba smb jcifs

我正在编写一个简单的android代码,使用jcifs在我的SMB文件夹中创建一个文件。但我得到以下例外。

  

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();
        }

1 个答案:

答案 0 :(得分:0)

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