我正在尝试使用 JAVA 将 excel 从本地复制到 pjt 工作区。
我的一段代码是:
public void copy(String filepath,String newFilePath) throws IOException
{File oldFile = new File(filepath);
File newFile = new File(newFilePath);
try{
FileUtils.copyFileToDirectory(oldFile, newFile);
}
文件路径是:C:\fakepath\exceldata.xls(file path)
newFilePath 是:(D:/Workspace/Pjt/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/bench/files/2013-10-16
它在我的 Eclipse 工作区中的目录)
当我的 tomcat 服务器和文件在同一台机器上时它可以工作。但是,当我尝试从不同的机器上传文件时它不起作用。
在这种情况下,我收到找不到源文件的错误(FILE NOT FOUND EXCEPTION
。)
请帮帮我...非常感谢任何帮助。谢谢..