null
当我尝试获取png
图像的内容类型时,我得到了价值
以下是我如何尝试在我的内容中获取内容类型servlet
:
String contentType = getServletContext().getMimeType(image.getName());
我正在获取contentType = null
并image.getName()
返回png
图像名称。
我尝试了其他方法来获取同一png
图像的内容类型:
String contentType = new MimetypesFileTypeMap().getContentType("imageName.png");
上面的代码给了我contentType = application/octet-stream
。
我的问题是为什么我会为同一张图片获得不同的内容类型,我应该怎么做才能获得适用于图像类型的image/x-png
正确.png
内容