MultipartFile获取文件的contentType
时间: 2023-08-15 10:13:13 浏览: 332
Spring Boot 封装的文件上传接口示例
您可以使用`MultipartFile`对象的`getContentType()`方法来获取上传文件的`contentType`。以下是一个示例代码:
```java
import org.springframework.web.multipart.MultipartFile;
public String getContentType(MultipartFile file) {
String contentType = file.getContentType();
return contentType;
}
```
您可以将`MultipartFile`对象作为参数传递给上述方法,然后它将返回文件的`contentType`。请注意,返回的`contentType`可能包含文件的MIME类型和字符编码信息(如果适用)。
阅读全文