使用JSP试图将客户徽标移到linux中的另一个位置,但是它不起作用。
提前致谢
这是我的程序
String customerLogo = request.getParameter("uploadCustomerLogo").trim();
StringBuffer absoluteFolderPath = new StringBuffer();
absoluteFolderPath.append("/zoniac");
absoluteFolderPath.append("/Companies/");
absoluteFolderPath.append("companyCode/");
absoluteFolderPath.append("custom/");
String destination = absoluteFolderPath.toString();
File sourcefile = new File(customerLogo);
File destfile = new File(destination+sourcefile.getName());
FileUtils.copyFile(sourcefile,destfile);
最佳答案
在servlet中编写Java代码更好。
并且此方法有效,您需要提供文件的物理路径,似乎您在Web上下文中提供了相对路径。