接口

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
/**
* 上传文件
* @param file
* @return
*/
@PostMapping("/upload")
public Result upload(@RequestParam(value = "file") MultipartFile file) {
//我这里简写的使用逻辑层,使用时需改动
String url = FileUtil.uploadFile(file);
return new Result(url, 0, "上传成功");
}

逻辑层

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class FileUtil {
/**
* 上传文件 支持无文件夹创建
* @param file
* @return
* @throws IOException
*/
public String upload(MultipartFile file) throws IOException {
// 自定义文件名称
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
String newFileName = sdf.format(new Date()) + file.getOriginalFilename();
//文件上传路径
String filePath = "E:\\file";
//判断是否有文件夹,没有则新创建
File targetFile = new File(filePath);
if (!targetFile.exists()) {
targetFile.mkdirs();
}
//上传路径 路径+名称
String lastFilePath = filePath + "/" + newFileName;
//上传文件
FileOutputStream out = null;
String fileUrl = null;
try {
out = new FileOutputStream(lastFilePath);
out.write(file.getBytes());
//文件访问路径
fileUrl = "http://127.0.0.1:9000" + File.separator + newFileName;
} catch (Exception e) {
e.printStackTrace();
} finally {
if (out != null) {
try {
out.flush();
} catch (IOException e) {
e.printStackTrace();
}
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return fileUrl;
}
}