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. The first gave me memory exceptions, the second doesn't close its streams off properly. I was just wondering if anyone else had a method/library that they used and worked correctly?
|
|
Unfortunately,
does not work, since this use of URL leaves a file locked, so that, for example, it is undeletable. However, you have this:
and also the following, which has the advantage of going beyond mere use of file extension, and takes a peek at content
However, as suggested by the comment above, the built-in table of mime-types is quite limited, not including, for example, MSWord and PDF. So, if you want to generalize, you'll need to go beyond the built-in libraries, using, e.g., Mime-Util (which is a great library, using both file extension and content). |
|||||
|
|
I know this is solved, but just a heads up that in Java 7 you can now just use |
|||||||||||||||
|
|
The JAF API is part of JDK 6. Look at Most interesting classes are
|
|||||
|
|
From roseindia:
|
|||
|
|
|
I tried several ways to do it, including the first ones said by @Joshua Fox. But some don't recognize frequent mimetypes like for PDF files, and other could not be trustable with fake files (I tried with a RAR file with extension changed to TIF). The solution I found, as also is said by @Joshua Fox in a superficial way, is to use MimeUtil2, like this:
|
|||||||||
|
|
If you're an Android developer, you can use a utility class Following code snippet may help you.
|
|||
|
|
|
Apache Tika offers in tika-core a mime type detection based based on magic markers in the stream prefix. Simple code example (Java 7), using the variables
Please not that MediaType.detect(...) cannot be used directly (TIKA-1120). More hints are provided at https://tika.apache.org/0.10/detection.html. |
|||
|
|