|
|
@ -55,17 +55,24 @@ public class FileTransUtil {
|
|
|
|
* @return 成功或者失败消息
|
|
|
|
* @return 成功或者失败消息
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public static String uploadFiles(MultipartFile[] uploadfiles, String dir) {
|
|
|
|
public static String uploadFiles(MultipartFile[] uploadfiles, String dir) {
|
|
|
|
|
|
|
|
// 打印调试信息
|
|
|
|
log.debug("Multiple file upload!");
|
|
|
|
log.debug("Multiple file upload!");
|
|
|
|
|
|
|
|
// 将上传的文件名拼接成一个字符串
|
|
|
|
String uploadedFileName = Arrays.stream(uploadfiles).map(x -> x.getOriginalFilename()).filter(x -> !StringUtils.isEmpty(x)).collect(Collectors.joining(" , "));
|
|
|
|
String uploadedFileName = Arrays.stream(uploadfiles).map(x -> x.getOriginalFilename()).filter(x -> !StringUtils.isEmpty(x)).collect(Collectors.joining(" , "));
|
|
|
|
|
|
|
|
// 如果文件名为空,则返回错误信息
|
|
|
|
if (StringUtils.isEmpty(uploadedFileName)) {
|
|
|
|
if (StringUtils.isEmpty(uploadedFileName)) {
|
|
|
|
return "文件名不能为空";
|
|
|
|
return "文件名不能为空";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// 调用工具类保存上传的文件
|
|
|
|
FileTransUtil.saveUploadedFiles(Arrays.asList(uploadfiles), dir);
|
|
|
|
FileTransUtil.saveUploadedFiles(Arrays.asList(uploadfiles), dir);
|
|
|
|
} catch (IOException e) {
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
|
|
|
// 如果保存文件时发生异常,则返回错误信息
|
|
|
|
return "后台服务异常";
|
|
|
|
return "后台服务异常";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 打印上传成功的日志信息
|
|
|
|
log.info("file upload successfully! " + uploadedFileName);
|
|
|
|
log.info("file upload successfully! " + uploadedFileName);
|
|
|
|
|
|
|
|
// 返回上传成功的提示信息
|
|
|
|
return "文件上传成功";
|
|
|
|
return "文件上传成功";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -75,26 +82,37 @@ public class FileTransUtil {
|
|
|
|
* @param files 上传的文件
|
|
|
|
* @param files 上传的文件
|
|
|
|
* @throws IOException 文件保存异常
|
|
|
|
* @throws IOException 文件保存异常
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
// 保存上传的文件
|
|
|
|
public static void saveUploadedFiles(List<MultipartFile> files, String dir) throws IOException {
|
|
|
|
public static void saveUploadedFiles(List<MultipartFile> files, String dir) throws IOException {
|
|
|
|
|
|
|
|
// 遍历文件列表
|
|
|
|
for (MultipartFile file : files) {
|
|
|
|
for (MultipartFile file : files) {
|
|
|
|
|
|
|
|
// 如果文件为空,则跳过
|
|
|
|
if (file.isEmpty()) {
|
|
|
|
if (file.isEmpty()) {
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 如果文件夹不存在,则创建
|
|
|
|
if (!FileUtil.exist(dir)) {
|
|
|
|
if (!FileUtil.exist(dir)) {
|
|
|
|
// 文件夹不存在就创建
|
|
|
|
// 文件夹不存在就创建
|
|
|
|
FileUtil.mkdir(dir);
|
|
|
|
FileUtil.mkdir(dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 获取文件的字节数组
|
|
|
|
byte[] bytes = file.getBytes();
|
|
|
|
byte[] bytes = file.getBytes();
|
|
|
|
|
|
|
|
// 获取文件的原始文件名,并替换反斜杠为正斜杠
|
|
|
|
String fileName = file.getOriginalFilename().replace("\\", "/");
|
|
|
|
String fileName = file.getOriginalFilename().replace("\\", "/");
|
|
|
|
|
|
|
|
// 如果文件名中包含斜杠,则说明是上传文件夹
|
|
|
|
if (fileName.lastIndexOf('/')>0){
|
|
|
|
if (fileName.lastIndexOf('/')>0){
|
|
|
|
// 上传文件夹的时候会有这种情况
|
|
|
|
// 上传文件夹的时候会有这种情况
|
|
|
|
|
|
|
|
// 获取文件夹路径
|
|
|
|
String fileDir = dir + "/" + fileName.substring(0, fileName.lastIndexOf('/'));
|
|
|
|
String fileDir = dir + "/" + fileName.substring(0, fileName.lastIndexOf('/'));
|
|
|
|
|
|
|
|
// 如果文件夹不存在,则创建
|
|
|
|
if (!FileUtil.exist(fileDir)) {
|
|
|
|
if (!FileUtil.exist(fileDir)) {
|
|
|
|
// 文件夹不存在就创建,创建文件夹的时候会用到
|
|
|
|
// 文件夹不存在就创建,创建文件夹的时候会用到
|
|
|
|
FileUtil.mkdir(fileDir);
|
|
|
|
FileUtil.mkdir(fileDir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 获取文件的路径
|
|
|
|
Path path = Paths.get(dir + "/" + fileName);
|
|
|
|
Path path = Paths.get(dir + "/" + fileName);
|
|
|
|
|
|
|
|
// 将文件写入路径
|
|
|
|
Files.write(path, bytes);
|
|
|
|
Files.write(path, bytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -107,14 +125,23 @@ public class FileTransUtil {
|
|
|
|
* @throws IOException 文件流读取异常
|
|
|
|
* @throws IOException 文件流读取异常
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public static ResponseEntity<InputStreamResource> downloadFile(String filePath) throws IOException {
|
|
|
|
public static ResponseEntity<InputStreamResource> downloadFile(String filePath) throws IOException {
|
|
|
|
|
|
|
|
// 记录下载文件的信息
|
|
|
|
log.info("downloading file : " + filePath);
|
|
|
|
log.info("downloading file : " + filePath);
|
|
|
|
|
|
|
|
// 创建文件系统资源
|
|
|
|
FileSystemResource file = new FileSystemResource(filePath);
|
|
|
|
FileSystemResource file = new FileSystemResource(filePath);
|
|
|
|
|
|
|
|
// 创建响应头
|
|
|
|
HttpHeaders headers = new HttpHeaders();
|
|
|
|
HttpHeaders headers = new HttpHeaders();
|
|
|
|
|
|
|
|
// 设置缓存控制
|
|
|
|
headers.add("Cache-Control", "no-cache, no-store, must-revalidate");
|
|
|
|
headers.add("Cache-Control", "no-cache, no-store, must-revalidate");
|
|
|
|
|
|
|
|
// 设置文件下载时的文件名
|
|
|
|
headers.add("Content-Disposition", String.format("attachment; filename=\"%s\"", new String(file.getFilename().getBytes("gbk"), "iso-8859-1")));
|
|
|
|
headers.add("Content-Disposition", String.format("attachment; filename=\"%s\"", new String(file.getFilename().getBytes("gbk"), "iso-8859-1")));
|
|
|
|
|
|
|
|
// 设置缓存控制
|
|
|
|
headers.add("Pragma", "no-cache");
|
|
|
|
headers.add("Pragma", "no-cache");
|
|
|
|
|
|
|
|
// 设置缓存控制
|
|
|
|
headers.add("Expires", "0");
|
|
|
|
headers.add("Expires", "0");
|
|
|
|
|
|
|
|
// 打印文件名
|
|
|
|
System.out.println(file.getFilename());
|
|
|
|
System.out.println(file.getFilename());
|
|
|
|
|
|
|
|
// 返回响应实体
|
|
|
|
return ResponseEntity
|
|
|
|
return ResponseEntity
|
|
|
|
.ok()
|
|
|
|
.ok()
|
|
|
|
.headers(headers)
|
|
|
|
.headers(headers)
|
|
|
|