@RequestMapping("upload")
public String upload(MultipartFile file)throws IOException{
File directory = new File("src/main/resources");
//自定义路径
String reportPath = directory.getCanonicalPath()+ "/test";
System.out.println(reportPath);
File folder = new File(reportPath);
if (!folder.exists()) {
folder.mkdirs();
}
// 文件上传
try {
// 判断文件是否存在,如果存在则覆盖
if (new File(reportPath + "/" + file.getOriginalFilename()).exists()) {
FileUtils.forceDelete(new File(reportPath + "/" + file.getOriginalFilename()));
}
// 转移文件到指定目录
file.transferTo(new File(reportPath + "/" + file.getOriginalFilename()));
} catch (Exception e) {
e.printStackTrace();
}
return "index";
}
这段代码使用了Apache Commons IO库的FileUtils类,需要确保的项目中已经添加了这个库的依赖。如果项目是Maven项目,可以在pom.xml中添加以下依赖:
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version> <!-- 请根据实际情况选择版本 -->
</dependency>