Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
A good overview on available libraries is given at rgagnon.com/javadetails/java-0487.html – koppor May 17 at 22:15

7 Answers

Unfortunately,

mimeType = file.toURL().openConnection().getContentType();

does not work, since this use of URL leaves a file locked, so that, for example, it is undeletable.

However, you have this:

mimeType= URLConnection.guessContentTypeFromName(file.getName());

and also the following, which has the advantage of going beyond mere use of file extension, and takes a peek at content

InputStream is = new BufferedInputStream(new FileInputStream(file));
mimeType = URLConnection.guessContentTypeFromStream(is);
 //...close stream

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).

share|improve this answer
1  
Perfect solution - helped me a lot! Wrapping FileInputStream into BufferedInputStream is crucial part - otherwise guessContentTypeFromStream returns null (passed InputStream instance should support marks) – Yura Nov 9 '12 at 11:09

I know this is solved, but just a heads up that in Java 7 you can now just use Files.probeContentType(path).

share|improve this answer
This was very helpful since the mime-util website appears to be down and I can't tell if the library is being maintained at all! – Jazzepi Jul 17 '12 at 20:48
5  
The only problem with SO and canonical/wiki answers... hard to get the "new" best answer on top. – thinice Jul 31 '12 at 0:08
This works well, however I have not found a way to add more file types that I understand. For example an ISO image returns null, as does a .zip archive and even an ini configuration file. – Logan Dam Dec 18 '12 at 11:00
1  
Other file types can be added using the extension mechanism as described in the docs: openjdk.java.net/projects/nio/javadoc/java/nio/file/… – Andrew Taylor Mar 5 at 0:29
Thank you, works great. – yzernik Mar 8 at 19:44
show 1 more comment

The JAF API is part of JDK 6. Look at javax.activation package.

Most interesting classes are javax.activation.MimeType - an actual MIME type holder - and javax.activation.MimetypesFileTypeMap - class whose instance can resolve MIME type as String for a file:

String fileName = "/path/to/file";
MimetypesFileTypeMap mimeTypesMap = new MimetypesFileTypeMap();

// only by file name
String mimeType = mimeTypesMap.getContentType(fileName);

// or by actual File instance
File file = new File(fileName);
mimeType = mimeTypesMap.getContentType(file);
share|improve this answer
3  
Unfortunately, as the javadoc for getContentType(File) states: Returns the MIME type of the file object.The implementation in this class calls getContentType(f.getName()). – Matyas Oct 24 '11 at 14:27

From roseindia:

FileNameMap fileNameMap = URLConnection.getFileNameMap();
String mimeType = fileNameMap.getContentTypeFor("alert.gif");
share|improve this answer

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:

MimeUtil2 mimeUtil = new MimeUtil2();
mimeUtil.registerMimeDetector("eu.medsea.mimeutil.detector.MagicMimeMimeDetector");
String mimeType = MimeUtil2.getMostSpecificMimeType(mimeUtil.getMimeTypes(file)).toString();
share|improve this answer
2  
I had no success at all with MimeUtil2 - almost everything came back as application/octet-stream. I used MimeUtil.getMimeTypes() with much more success after initializing with ` MimeUtil.registerMimeDetector("eu.medsea.mimeutil.detector.MagicMimeMimeDetector‌​"); MimeUtil.registerMimeDetector("eu.medsea.mimeutil.detector.ExtensionMimeDetector‌​"); MimeUtil.registerMimeDetector("eu.medsea.mimeutil.detector.OpendesktopMimeDetect‌​or"); ` – VogonPoet Dec 11 '12 at 18:45
1  
Thanks for the working solution. The documentation of mime-util is not very clear about how to instantiate the utility class. Finally got it up and running, but replaced the classname string with the actual class. MimeUtil.registerMimeDetector(ExtensionMimeDetector.class.getName()); String mimeType = MimeUtil.getMostSpecificMimeType(MimeUtil.getMimeTypes(filename)).toString(); – Rob Juurlink Jan 31 at 22:28

If you're an Android developer, you can use a utility class android.webkit.MimeTypeMap which maps MIME-types to file extensions and vice versa.

Following code snippet may help you.

private static String getMimeType(String fileUrl) {
    String extension = MimeTypeMap.getFileExtensionFromUrl(fileUrl);
    return MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
}
share|improve this answer

Apache Tika offers in tika-core a mime type detection based based on magic markers in the stream prefix. tika-core does not fetch other dependencies, which makes it as lightweight as the currently unmaintained Mime Type Detection Utility.

Simple code example (Java 7), using the variables theInputStream and theFileName

try (InputStream is = theInputStream;
        BufferedInputStream bis = new BufferedInputStream(is);) {
    AutoDetectParser parser = new AutoDetectParser();
    Detector detector = parser.getDetector();
    Metadata md = new Metadata();
    md.add(Metadata.RESOURCE_NAME_KEY, theFileName);
    MediaType mediaType = detector.detect(bis, md);
    return mediaType.toString();
}

Please not that MediaType.detect(...) cannot be used directly (TIKA-1120). More hints are provided at https://tika.apache.org/0.10/detection.html.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.