解决保存同名文件到本地问题:
各位是否有遇到类似案例:
- 在项目中添加两个相同的文件,两个文件同名同姓同后缀。
- 不仅要将项目保存在数据库中,还需保存在本地文件夹里
若只是简单的 File file = new File(filePath): - 则会造成文件同名,将原有的文件覆盖。
- 在前台删除文件时,会将那唯一的本地文件删除。表中另一条数据的url就指向空地址,查询会报错。
解决方案:
文件名=时间戳+原文件名
@RequestMapping("...")
public void method(
@RequestParam("file") MultipartFile avatorFile){ //获取前台传入的文件参数
/*文件名=1970年到现在的毫秒+原文件名*/
String fileName = System.currentTimeMillis() + mpFile.getOriginalFilename();
/*文件路径*/
String filePath = System.getProperty("user.dir")+System.getProperty("file.separator")+"song";
/*如果文件路径不存在,新增路径*/
File file1 = new File(filePath);
if (!file1.exists()){
file1.mkdir();
}
/*实际的文件地址*/
File dest = new File(filePath + System.getProperty("file.separator") + fileName);
/*存储到数据库里的相对路径地址*/
String storeUrlPath= "song/"+fileName;
}
- 保存后效果: