我尝试使用 JCIFS(SmbFile)概念在受保护的共享文件夹上编写文件。以下是我尝试过并在受保护文件夹上成功写入文件的代码段:
String username = "username";
String password = "password";
String protectedFolder = "smb://machineName/protectedFolderName";
String fileName = "SampleFile.xls";
String filePath = protectedFolder + fileName;
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(username + ":" +
password);
SmbFile protectedFile = new SmbFile(strTemplate, auth);
SmbFileOutputStream fileOut = new SmbFileOutputStream(protectedFile);
wb.write(fileOut);
fileOut.close();
The above code successfully creates 'SampleFile.xls' in the protected folder.
如果我想通过单击链接(href)从jsp页面打开该文件,我如何才能执行上述JCIFS身份验证? 对此的任何想法都很明显。
感谢。