springboot上传图片
时间: 2023-07-02 19:22:33 浏览: 109
springboot实现上传图片添加水印
5星 · 资源好评率100%
首先,在Spring Boot中,我们可以使用MultipartFile类来处理上传的文件。这个类可以代表一个上传的文件,我们可以从中获取文件名、大小、类型等信息。
下面是一个简单的上传图片的示例代码:
1.在Controller中添加一个处理上传图片的方法:
```java
@PostMapping("/upload")
public String uploadImage(@RequestParam("file") MultipartFile file) {
// 获取上传的文件名
String fileName = file.getOriginalFilename();
// 获取文件的后缀名
String suffixName = fileName.substring(fileName.lastIndexOf("."));
// 生成新的文件名
String newFileName = UUID.randomUUID().toString() + suffixName;
// 创建文件对象
File destFile = new File(uploadPath + newFileName);
try {
// 保存文件
file.transferTo(destFile);
return "success";
} catch (IOException e) {
e.printStackTrace();
return "error";
}
}
```
2.在application.properties文件中配置上传文件的路径:
```properties
# 上传文件保存路径
upload.path=D:/upload/
```
3.在项目启动类中添加一个初始化方法,用于创建上传文件夹:
```java
@SpringBootApplication
public class Application {
@Value("${upload.path}")
private String uploadPath;
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@PostConstruct
public void init() {
// 创建上传文件夹
File uploadFile = new File(uploadPath);
if (!uploadFile.exists()) {
uploadFile.mkdirs();
}
}
}
```
以上就是一个简单的Spring Boot上传图片的示例代码,你可以根据自己的需求进行修改。
阅读全文