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)
|
|
|
|
|
|
|
Yes, URLConnection.guessContentTypeFromName does exactly this. |
||
|
|
|
|
Yes, via the JavaBeans Activation Framework (javax.activation).
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. |
|||
|
|
|
|
A hashtable you've loaded with the common types? |
||
|
|
