vote up 2 vote down star

I have a Java application which sometimes has to generate a Content-Type header from a filename alone. Is there a way to estimate the Content-Type for common extensions? (e.g. ".pdf" maps to "application/pdf", etc)

flag

58% accept rate

3 Answers

vote up 5 vote down

Yes, URLConnection.guessContentTypeFromName does exactly this.

link|flag
vote up 7 vote down

Yes, via the JavaBeans Activation Framework (javax.activation).

import java.io.File;
import javax.activation.MimetypesFileTypeMap;
...
return new MimetypesFileTypeMap().getContentType(new File("brognitz.jpg"));

You can also add your own content types if the Java built-in database is inadequate.

Edit: Jason Day's answer is just as correct, as far as I can tell.

link|flag
vote up 0 vote down

A hashtable you've loaded with the common types?

link|flag

Your Answer

Get an OpenID
or

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