multipartfile获取文件类型
时间: 2023-08-08 16:09:43 浏览: 39
Multiparfile类型转为File类型
可以通过调用MultipartFile的getContentType()方法获取文件类型,返回值是字符串形式的MIME类型。例如:
```
@PostMapping("/upload")
public String handleFileUpload(@RequestParam("file") MultipartFile file) {
String contentType = file.getContentType();
// do something with the file
}
```
阅读全文