|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.tika.mime.MimeTypes
public final class MimeTypes
This class is a MimeType repository. It gathers a set of MimeTypes and enables to retrieves a content-type from its name, from a file name, or from a magic character sequence.
The MIME type detection methods that take an InputStream as
an argument will never reads more than getMinLength() bytes
from the stream. Also the given stream is never
closed, marked,
or reset by the methods. Thus a client can
use the mark feature of the stream
(if available) to restore the stream back to the state it was before type
detection if it wants to process the stream based on the detected type.
| Field Summary | |
|---|---|
static java.lang.String |
DEFAULT
The default application/octet-stream MimeType |
| Constructor Summary | |
|---|---|
MimeTypes()
|
|
| Method Summary | |
|---|---|
void |
addPattern(MimeType type,
java.lang.String pattern)
Adds a file name pattern for the given media type. |
MimeType |
forName(java.lang.String name)
Returns the registered media type with the given name (or alias). |
MimeType |
getMimeType(byte[] data)
Returns the MIME type that best matches the given first few bytes of a document stream. |
MimeType |
getMimeType(java.io.File file)
Find the Mime Content Type of a file. |
MimeType |
getMimeType(java.io.InputStream stream)
Returns the MIME type that best matches the first few bytes of the given document stream. |
MimeType |
getMimeType(java.lang.String name)
Find the Mime Content Type of a document from its name. |
MimeType |
getMimeType(java.lang.String name,
byte[] data)
Find the Mime Content Type of a document from its name and its content. |
MimeType |
getMimeType(java.lang.String name,
java.io.InputStream stream)
Returns the MIME type that best matches the given document name and the first few bytes of the given document stream. |
MimeType |
getMimeType(java.net.URL url)
Find the Mime Content Type of a document from its URL. |
int |
getMinLength()
Return the minimum length of data to provide to analyzing methods based on the document's content in order to check all the known MimeTypes. |
java.lang.String |
getType(java.lang.String typeName,
java.lang.String url,
byte[] data)
|
java.lang.String |
getType(java.net.URL url)
Determines the MIME type of the resource pointed to by the specified URL. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final java.lang.String DEFAULT
application/octet-stream MimeType
| Constructor Detail |
|---|
public MimeTypes()
| Method Detail |
|---|
public MimeType getMimeType(java.io.File file)
file - to analyze.
null
if none is found.public MimeType getMimeType(java.net.URL url)
url - of the document to analyze.
null if none is found.public MimeType getMimeType(java.lang.String name)
name - of the document to analyze.
public MimeType getMimeType(byte[] data)
The given byte array is expected to be at least getMinLength()
long, or shorter only if the document stream itself is shorter.
data - first few bytes of a document stream
null if no match is found
public MimeType getMimeType(java.io.InputStream stream)
throws java.io.IOException
stream - document stream
null if no match is found
java.io.IOException - if the stream can be readgetMimeType(byte[])
public java.lang.String getType(java.lang.String typeName,
java.lang.String url,
byte[] data)
public java.lang.String getType(java.net.URL url)
throws java.io.IOException
url -
java.io.IOException
public MimeType getMimeType(java.lang.String name,
byte[] data)
name - of the document to analyze.data - are the first bytes of the document's content.
null if none is found.getMinLength()
public MimeType getMimeType(java.lang.String name,
java.io.InputStream stream)
throws java.io.IOException
name - document namestream - document stream
null if no match is found
java.io.IOException - if the stream can not be readgetMimeType(String, byte[])
public MimeType forName(java.lang.String name)
throws MimeTypeException
name - media type name (case-insensitive)
MimeTypeException - if the given media type name is invalid
public void addPattern(MimeType type,
java.lang.String pattern)
throws MimeTypeException
type - media typepattern - file name pattern
MimeTypeException - if the pattern conflicts with existing onespublic int getMinLength()
getMimeType(byte[]),
getMimeType(String, byte[])
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||