java.lang.Object | |
↳ | android.webkit.MimeTypeMap |
Two-way map that maps MIME-types to file extensions and vice versa.
See also guessContentTypeFromName(String)
and guessContentTypeFromStream(InputStream)
. This
class and URLConnection
share the same MIME-type database.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Return the registered extension for the given MIME type.
| |||||||||||
Returns the file extension or an empty string iff there is no
extension.
| |||||||||||
Return the MIME type for the given extension.
| |||||||||||
Get the singleton instance of MimeTypeMap.
| |||||||||||
Return true if the given extension has a registered MIME type.
| |||||||||||
Return true if the given MIME type has an entry in the map.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Return the registered extension for the given MIME type. Note that some MIME types map to multiple extensions. This call will return the most common extension for the given MIME type.
mimeType | A MIME type (i.e. text/plain) |
---|
Returns the file extension or an empty string iff there is no extension. This method is a convenience method for obtaining the extension of a url and has undefined results for other Strings.
Return the MIME type for the given extension.
extension | A file extension without the leading '.' |
---|
Get the singleton instance of MimeTypeMap.
Return true if the given extension has a registered MIME type.
extension | A file extension without the leading '.' |
---|
Return true if the given MIME type has an entry in the map.
mimeType | A MIME type (i.e. text/plain) |
---|