This class extends FileTypeMap and provides data typing of files via their file extension. It uses the .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:
Programmatically added entries to the MimetypesFileTypeMap instance. The file .mime.types in the user's home directory. The file <java.home>/lib/mime.types. The file or resources named META-INF/mime.types. The file or resource named META-INF/mimetypes.default (usually found only in the activation.jar file).
MIME types file format:
text/plain txt text TXT
text/plain
This class extends FileTypeMap and provides data typing of files via their file extension. It uses the .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: Programmatically added entries to the MimetypesFileTypeMap instance. The file .mime.types in the user's home directory. The file <java.home>/lib/mime.types. The file or resources named META-INF/mime.types. The file or resource named META-INF/mimetypes.default (usually found only in the activation.jar file). 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`
(->mimetypes-file-type-map)
(->mimetypes-file-type-map mime-type-file-name)
Constructor.
Construct a MimetypesFileTypeMap with programmatic entries added from the named file.
mime-type-file-name - the file name - java.lang.String
throws: java.io.IOException
Constructor. Construct a MimetypesFileTypeMap with programmatic entries added from the named file. mime-type-file-name - the file name - `java.lang.String` throws: java.io.IOException
(add-mime-types this mime-types)
Prepend the MIME type values to the registry.
mime-types - A .mime.types formatted string of entries. - java.lang.String
Prepend the MIME type values to the registry. mime-types - A .mime.types formatted string of entries. - `java.lang.String`
(get-content-type this f)
Return the MIME type of the file object. The implementation in this class calls getContentType(f.getName()).
f - the file - java.io.File
returns: the file's MIME type - java.lang.String
Return the MIME type of the file object. The implementation in this class calls getContentType(f.getName()). f - the file - `java.io.File` returns: the file's MIME type - `java.lang.String`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close