我正在编写代码以使用Spring的MultipartFile在服务器上上传文件,因为我编写了以下代码
if(!partnersContentBean.getFile().isEmpty()){
MultipartFile file = partnersContentBean.getFile();
if(file.getOriginalFilename().endsWith(".jpeg")||file.getOriginalFilename().endsWith(".jpg")|| file.getOriginalFilename().endsWith(".gif")){
File dirPath = new File("//125.22.60.37/image/dev/cmt/");
if (!dirPath.exists()) {
dirPath.mkdirs();
}
URL url = new URL("http://125.22.60.37/image/dev/cmt/");
File destination = new File(url.toString());
file.transferTo(destination);
String url1 = request.getContextPath() + ApplicationConstants.imageUploadDirectory + file.getOriginalFilename();
System.out.println(url.getPath());
partnersContentBean.setPartnerImagename(file.getOriginalFilename());
partnersContentBean.setPartnerImagepath(destination.getPath());
}else
{
userModuleDetailBean.put("errorMessage", "File should be in type of jpg,Jpeg or GIF");
return new ModelAndView(new RedirectView("partnersAdd_CMT.htm"),"userModuleDetailBean",userModuleDetailBean);
}
}
但是当我上传文件时,我得到以下异常java.io.FileNotFoundException:http:\125.22.60.37\image\dev\cmt (The filename, directory name, or volume label syntax is incorrect)
不知道我应该给上传它的路径
答案 0 :(得分:1)
看起来您正在尝试将上传的文件传输到另一台远程服务器(125.22.60.37
)。您不能这样做 - 您无法使用File
对象表示HTTP URL。
FileUpload用于将上传的文件存储到本地计算机。在那里,您可以担心将它们移动到另一台远程服务器,但这两项任务是分开的。