Getting A File's Mime Type In Java

后端 未结 23 2719
南方客
南方客 2020-11-21 06:53

I was just wondering how most people fetch a mime type from a file in Java? So far I\'ve tried two utils: JMimeMagic & Mime-Util.

Th

23条回答
  •  -上瘾入骨i
    2020-11-21 07:22

    This is the simplest way I found for doing this:

    byte[] byteArray = ...
    InputStream is = new BufferedInputStream(new ByteArrayInputStream(byteArray));
    String mimeType = URLConnection.guessContentTypeFromStream(is);
    

提交回复
热议问题