所以我正在尝试将文件从 android 设备写入 windows 共享文件夹。我正在使用最新版本的 JCIFS 和显示可用网络共享的代码工作正常。所以我假设 JCIFS 和我的 LAN、WiFi 等一切正常。这是文件上传的代码(实际上我只想将文本 Sring 写入文件):
public boolean save2Samba(String text, String fileName) {
try {
// My Windows shares doesn't require any login/password
// String name="login";//my windows username
// String password="password1";//my windows password
// sSambaFolder contains a path like MYPC/E/SharedFolderName/
String url = "smb://" + sSambaFolder.toLowerCase()+fileName;
SmbFile file = null;
try {
// assume ANONYMOUS is my case but there is no description of this in JCIFS API
NtlmPasswordAuthentication auth = NtlmPasswordAuthentication.ANONYMOUS;
file = new SmbFile(url, auth);
android.util.Log.i("TestApp",url);
// output is like smb://mypc/e/sharedfoldername/file.txt;
SmbFileOutputStream out = new SmbFileOutputStream(file);
out.write(text.getBytes());
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
由于记录了 url,我确定它是正确的(我也使用上面提到的代码检查了 url,它浏览了文件夹的包含)。
但问题是我总是一样:
W/System.err(3214): jcifs.smb.SmbAuthException: Access is denied.
共享不受密码保护,因此我不需要任何用户名/密码即可访问。我可以从另一台 WinPC 读取/写入/删除文件,并且不需要授权。我也尝试为 WinPC 上的用户创建一个共享密码,但结果是一样的。所以我尝试了几个版本的 NtlmPasswordAuthentication 都没有运气:
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("");
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(":");
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("Administrator:"); //actual username on WinPC with shares
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("Administrator");
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(null,"Administrator","");
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(null,"","");
那么我做错了什么以及当不需要身份验证来访问共享文件夹时如何实现我的目标?
顺便说一句,我的基于 linux 并使用 samba 客户端的三星电视正在毫无问题地访问同一个共享文件夹并从那里播放 MP3(嗯,是的,它只读)。由于我的 AOS 设备通过 WiFi(而不是通过以太网连接的电视)访问我的 LAN,我还检查了使用 notebook+WiFi 对共享文件夹的访问,没有发现任何问题。
补充:
我现在正在尝试执行以下几行:
file = new SmbFile(url, auth);
android.util.Log.i("save2Samba", "file.exists(): " + file.exists());
并获得相同的访问被拒绝。我什至没有尝试写文件...