上传文件Controller
/**
* @description 文件上传
* @author yuzk
*/
@RequestMapping(value="/fileUpload")
@ResponseBody
public Map fileUpload(MultipartFile file) {
String url = UploadUtils.uploadFileAndGetPath(file);
//原文件名称
String originalImgName = file.getOriginalFilename();
Map map = new HashMap<>();
map.put("utl",url);
map.put("state","SUCCESS");
map.put("fileName",originalImgName);
return map;
}
上传文件util
/**
* 上传文件
* @throws Exception
*/
public static String uploadFileAndGetPath(MultipartFile multipartFile) {
String filePath = "";
try {
// 保存文件根路径
String fileRootPath = "F:\test\";
// 原文件名称
String originalImgName = multipartFile.getOriginalFilename();
// 获取文件后缀名
String suffix = originalImgName.substring(originalImgName.lastIndexOf("."));
if (!StringUtils.isEmpty(originalImgName)) {
// 重命名,防止重名
String fileName = CommonUtil.getUniqueCode()+ suffix;
// 根据hash散列算法生成多级目录
String hashDir = generateRandomDir(fileName);
String savePath = fileRootPath + File.separator + hashDir;
File file = new File(savePath);
if (!file.exists()) file.mkdirs();
filePath = hashDir + File.separator + fileName;
savePath = fileRootPath + filePath;
file = new File(savePath);
// 保存文件
multipartFile.transferTo(file);
}
} catch (Exception e) {
e.printStackTrace();
}
return filePath;
}
下载文件controller
/**
* @description 文件下载
* @param filePath 文件散列路径
* fileName 文件中文名称
*/
@RequestMapping("/downloadFile")
public void downloadFile(String filePath, String fileName,HttpServletResponse response){
try {
DownLoadFileUtil.downloadFile(filePath, fileName,response);
} catch (Exception e) {
e.printStackTrace();
}
}
下载文件util
/**
* 文件下载
* @param filePath
* @param fileName
* @throws Exception
*/
public static void downloadFile(String filePath,String fileName,HttpServletResponse response){
FileInputStream in = null;
OutputStream out = null;
try{
filePath = "F:\test\"+ filePath;
File file = new File(filePath);
in = new FileInputStream(file);
out = response.getOutputStream();
fileName = new String(fileName.getBytes("UTF-8"), "ISO-8859-1");
if (file.exists()) {
response.setCharacterEncoding("UTF-8");
response.setHeader("content-disposition", "attachment;filename="+ fileName);
byte buffer[] = new byte[1024];
int len = 0;
while ((len = in.read(buffer)) > 0) {
out.write(buffer, 0, len);
}
}
}catch (Exception e){
e.printStackTrace();
}finally {
try {
if(in != null) in.close();
if(out != null) out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}