我遇到了与link相同的问题,但未正确回答。我正在使用下面的代码。
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
try{
String url = "smb://DHARMU-PC/" + sharedFolder + "/new plugin.txt";
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(null);
SmbFile sfile = new SmbFile(url,auth);
if (sfile!=null)
{
Toast.makeText(Main2Activity.this,"Not", Toast.LENGTH_SHORT).show();
sfile.getInputStream();
}
else
{
Toast.makeText(Main2Activity.this, "Succsess", Toast.LENGTH_SHORT).show();
}
} catch (MalformedURLException e) {
Toast.makeText(Main2Activity.this, e.getMessage(), Toast.LENGTH_SHORT).show();
}
});
当我评论 sfile.getInputStream(); 应用程序运行完美,但与getinputstream应用程序一起使用时,try catch块中没有任何异常。由于上述问题没有得到回答,所以我再次提出这个问题。编辑
现在我尝试了异步任务
class CopySMBFile extends AsyncTask<String, String, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected String doInBackground(String... f_url) {
try {
String fileContent = "This is a test file";
try{
String user = "myusername:mypassword";
System.out.println("User: " + user);
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(user);
String path = "smb://192.168.1.12/k/temp/A.txt";
System.out.println("Path: " +path);
SmbFile sFile = new SmbFile(path, auth);
SmbFileOutputStream sfos = new SmbFileOutputStream(sFile);
sfos.write(fileContent.getBytes());
System.out.println("Finished attempt to write file");
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
Log.e("Connected", e.getMessage());
}
return null;
}
现在,通过Async Task,SmbFileOutputStream可以正常工作,但在getinputstream上仍然显示致命错误。编辑
发现Appcrash背后的原因是networkmainthread异常。现在,请解决该问题。
最佳答案
我认为NtlmPasswordAuthentication
调用是错误的。期望该字符串为host;user:password
。在您的情况下,应为192.168.1.12;myusername:mypassword
。您还可以使用构造函数的3参数版本:NtlmPasswordAuthentication("192.168.1.12","myusername","mypassword")
。