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 認証を実行するにはどうすればよいですか? これについての考えはかなりのものです。
ありがとう。