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

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.

share|improve this question
5  
An issue is that mimetypes are open-ended. – Dave Newton Oct 26 '11 at 14:57
@Bedwyr I am sorry. You're right: It is a duplicate. I'll close the question. – Fabian Barney Oct 26 '11 at 15:03
@Dave Thanks for pointing this out. Adjusted my question. – Fabian Barney Oct 26 '11 at 15:04

marked as duplicate by Bedwyr Humphreys, Dave Newton, Fabian Barney, ColinD, Graviton Oct 27 '11 at 4:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 1 down vote accepted

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

share|improve this answer
Thanks. This one comes closest to what I was expecting. – Fabian Barney Oct 26 '11 at 15:06

There cannot be an enum, since there is no closed set of possible values.

Several frameworks provide convenient classes that contain list of Strings. For example JAX-RS (jsr311) spec provides a class javax.ws.rs.core.MediaType.

share|improve this answer
MediaType is not an enum but its also another good option. – Amir Raminfar Oct 26 '11 at 15:06
Thanks. I'll have a look at it but Amir's enum looks more like something I am looking for. – Fabian Barney Oct 26 '11 at 15:09

Java stores some MIME types in DataFlavor.

share|improve this answer

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