我们的应用程序部署在weblogic服务器12c上。此应用程序需要将文件从服务器复制到网络位置上的某个文件夹。 如何在Java中实现这一目标?
应用程序代码就像
String source =
"C:\Oracle\Middleware\Oracle_Home\user_projects\domains
\base_domain\pdf_files\ABC.pdf";//Location on server
String destination = "\\machineA\SharedFolder";//shared folder in some machine on same network
FileInputStream in = new FileInputStream(source);
FileOutputStream out = new FileOutputStream(destination);
byte[] buf = new byte[1024];
int len = 0;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
收到错误讯息 java.io.FileNotFoundException:\\ machineA \ SharedFolder \ ABC.pdf(访问被拒绝)
答案 0 :(得分:1)
machineA(服务器)可以作为machineA $添加到共享文件夹的共享选项中。 然后,从应用程序服务器运行的此代码将能够访问该位置。
参考:https://serverfault.com/questions/135867/how-to-grant-network-access-to-localsystem-account