multipartfile获取probeContentType
时间: 2023-12-10 17:05:33 浏览: 80
multipartfile转file.txt
可以通过以下代码获取multipartfile的ContentType:
```
public static String getContentType(MultipartFile file) throws IOException {
Tika tika = new Tika(); //需要引入 org.apache.tika.Tika 包
String contentType = tika.detect(file.getInputStream());
return contentType;
}
```
其中,Tika是一个开源的Java库,提供了各种方法来检测文件的类型和元数据。使用detect()方法可以获取文件的ContentType。
阅读全文