public class MimetypesFileTypeMap extends FileTypeMap
.mime.types
format. MIME types file search order:
The MimetypesFileTypeMap looks in various places in the user's system for MIME types file entries. When requests are made to search for MIME types in the MimetypesFileTypeMap, it searches MIME types files in the following order:
.mime.types
in the user's home directory.
mime.types
in the Java runtime.
META-INF/mime.types
.
META-INF/mimetypes.default
(usually found only in the activation.jar
file).
(The current implementation looks for the mime.types
file
in the Java runtime in the directory java.home/conf
if it exists, and otherwise in the directory
java.home/lib
, where java.home is the value
of the "java.home" System property. Note that the "conf" directory was
introduced in JDK 9.)
MIME types file format:
# comments begin with a '#'
# the format is <mime type> <space separated file extensions>
# for example:
text/plain txt text TXT
# this would map file.txt, file.text, and file.TXT to
# the mime type "text/plain"
Constructor and Description |
---|
MimetypesFileTypeMap()
The default constructor.
|
MimetypesFileTypeMap(java.io.InputStream is)
Construct a MimetypesFileTypeMap with programmatic entries
added from the InputStream.
|
MimetypesFileTypeMap(java.lang.String mimeTypeFileName)
Construct a MimetypesFileTypeMap with programmatic entries
added from the named file.
|
Modifier and Type | Method and Description |
---|---|
void |
addMimeTypes(java.lang.String mime_types)
Prepend the MIME type values to the registry.
|
java.lang.String |
getContentType(java.io.File f)
Return the MIME type of the file object.
|
java.lang.String |
getContentType(java.lang.String filename)
Return the MIME type based on the specified file name.
|
getDefaultFileTypeMap, setDefaultFileTypeMap
public MimetypesFileTypeMap()
public MimetypesFileTypeMap(java.lang.String mimeTypeFileName) throws java.io.IOException
mimeTypeFileName
- the file namejava.io.IOException
- for errors reading the filepublic MimetypesFileTypeMap(java.io.InputStream is)
is
- the input stream to read frompublic void addMimeTypes(java.lang.String mime_types)
mime_types
- A .mime.types formatted string of entries.public java.lang.String getContentType(java.io.File f)
getContentType(f.getName())
.getContentType
in class FileTypeMap
f
- the filepublic java.lang.String getContentType(java.lang.String filename)
getContentType
in class FileTypeMap
filename
- the file name