Is there an enum with MIME Types in Java?

Fabian Barney picture Fabian Barney · Oct 26, 2011 · Viewed 35.1k times · Source

Possible Duplicate:
Interface/enum listing standard mime-type constants

Is there an enum (or something similar) which holds constants for the most common MIME types?

I'd like to deal with some constants rather than firing Strings here and there.

Answer

Amir Raminfar picture Amir Raminfar · Oct 26, 2011

There is not one in the JDK that I am aware of. But there is this class that you can probably start with.

Edit:

Now there is a better option I think. Using Guava's MediaType is a class that is maintained.