Class EncodingSniffer
-
Method Summary
Modifier and TypeMethodDescriptionstatic CharsetExtracts an encoding from the specifiedContent-Typevalue using the IETF algorithm; if no encoding is found, this method returnsnull.static CharsetsniffEncoding(List<NameValuePair> headers, InputStream content) Deprecated.static CharsetParses and returns the charset declaration at the start of a css file if any, otherwise returnsnull.static CharsetsniffEncodingFromHttpHeaders(List<NameValuePair> headers) Deprecated.as of version 4.0.0; method will be removed without replacementstatic CharsetAttempts to sniff an encoding from an HTMLmetatag in the specified byte array.static CharsetSearches the specified XML content for an XML declaration and returns the encoding if found, otherwise returnsnull.static CharsetsniffHtmlEncoding(List<NameValuePair> headers, InputStream content) Deprecated.as of version 4.0.0; depending on the content usesniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)insteadstatic CharsetsniffUnknownContentTypeEncoding(List<NameValuePair> headers, InputStream content) Deprecated.as of version 4.0.0; depending on the content usesniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)insteadstatic CharsetsniffXmlEncoding(List<NameValuePair> headers, InputStream content) Deprecated.as of version 4.0.0; depending on the content usesniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)insteadstatic CharsetReturnsCharsetif the specified charset name is supported on this platform.static StringtranslateEncodingLabel(String encodingLabel) Translates the given encoding label into a normalized form according to Reference.static StringtranslateEncodingLabel(Charset encodingLabel) Deprecated.as of version 4.0.0; method will be removed without replacement
-
Method Details
-
sniffEncoding
@Deprecated public static Charset sniffEncoding(List<NameValuePair> headers, InputStream content) throws IOException Deprecated.as of version 4.0.0; depending on the content usesniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)insteadIf the specified content is HTML content, this method sniffs encoding settings from the specified HTML content and/or the corresponding HTTP headers based on the HTML5 encoding sniffing algorithm.
If the specified content is XML content, this method sniffs encoding settings from the specified XML content and/or the corresponding HTTP headers using a custom algorithm.
Otherwise, this method sniffs encoding settings from the specified content of unknown type by looking for
Content-Typeinformation in the HTTP headers and Byte Order Mark information in the content.Note that if an encoding is found but it is not supported on the current platform, this method returns
null, as if no encoding had been found.- Parameters:
headers- the HTTP response headers sent back with the content to be sniffedcontent- the content to be sniffed- Returns:
- the encoding sniffed from the specified content and/or the corresponding HTTP headers,
or
nullif the encoding could not be determined - Throws:
IOException- if an IO error occurs
-
sniffHtmlEncoding
@Deprecated public static Charset sniffHtmlEncoding(List<NameValuePair> headers, InputStream content) throws IOException Deprecated.as of version 4.0.0; depending on the content usesniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)insteadSniffs encoding settings from the specified HTML content and/or the corresponding HTTP headers based on the HTML5 encoding sniffing algorithm.
Note that if an encoding is found but it is not supported on the current platform, this method returns
null, as if no encoding had been found.- Parameters:
headers- the HTTP response headers sent back with the HTML content to be sniffedcontent- the HTML content to be sniffed- Returns:
- the encoding sniffed from the specified HTML content and/or the corresponding HTTP headers,
or
nullif the encoding could not be determined - Throws:
IOException- if an IO error occurs
-
sniffXmlEncoding
@Deprecated public static Charset sniffXmlEncoding(List<NameValuePair> headers, InputStream content) throws IOException Deprecated.as of version 4.0.0; depending on the content usesniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)insteadSniffs encoding settings from the specified XML content and/or the corresponding HTTP headers using a custom algorithm.
Note that if an encoding is found but it is not supported on the current platform, this method returns
null, as if no encoding had been found.- Parameters:
headers- the HTTP response headers sent back with the XML content to be sniffedcontent- the XML content to be sniffed- Returns:
- the encoding sniffed from the specified XML content and/or the corresponding HTTP headers,
or
nullif the encoding could not be determined - Throws:
IOException- if an IO error occurs
-
sniffUnknownContentTypeEncoding
@Deprecated public static Charset sniffUnknownContentTypeEncoding(List<NameValuePair> headers, InputStream content) throws IOException Deprecated.as of version 4.0.0; depending on the content usesniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)insteadSniffs encoding settings from the specified content of unknown type by looking for
Content-Typeinformation in the HTTP headers and Byte Order Mark information in the content.Note that if an encoding is found but it is not supported on the current platform, this method returns
null, as if no encoding had been found.- Parameters:
headers- the HTTP response headers sent back with the content to be sniffedcontent- the content to be sniffed- Returns:
- the encoding sniffed from the specified content and/or the corresponding HTTP headers,
or
nullif the encoding could not be determined - Throws:
IOException- if an IO error occurs
-
sniffEncodingFromHttpHeaders
Deprecated.as of version 4.0.0; method will be removed without replacementAttempts to sniff an encoding from the specified HTTP headers.- Parameters:
headers- the HTTP headers to examine- Returns:
- the encoding sniffed from the specified HTTP headers, or
nullif the encoding could not be determined
-
sniffEncodingFromMetaTag
Attempts to sniff an encoding from an HTMLmetatag in the specified byte array.- Parameters:
is- the content stream to check for an HTMLmetatag- Returns:
- the encoding sniffed from the specified bytes, or
nullif the encoding could not be determined - Throws:
IOException- if an IO error occurs
-
extractEncodingFromContentType
Extracts an encoding from the specifiedContent-Typevalue using the IETF algorithm; if no encoding is found, this method returnsnull.- Parameters:
s- theContent-Typevalue to search for an encoding- Returns:
- the encoding found in the specified
Content-Typevalue, ornullif no encoding was found
-
sniffEncodingFromXmlDeclaration
Searches the specified XML content for an XML declaration and returns the encoding if found, otherwise returnsnull.- Parameters:
is- the content stream to check for the charset declaration- Returns:
- the encoding of the specified XML content, or
nullif it could not be determined - Throws:
IOException- if an IO error occurs
-
sniffEncodingFromCssDeclaration
Parses and returns the charset declaration at the start of a css file if any, otherwise returnsnull.e.g.
@charset "UTF-8"
- Parameters:
is- the input stream to parse- Returns:
- the charset declaration at the start of a css file if any, otherwise returns
null. - Throws:
IOException- if an IO error occurs
-
toCharset
ReturnsCharsetif the specified charset name is supported on this platform.- Parameters:
charsetName- the charset name to check- Returns:
Charsetif the specified charset name is supported on this platform
-
translateEncodingLabel
Deprecated.as of version 4.0.0; method will be removed without replacementTranslates the given encoding label into a normalized form according to Reference.- Parameters:
encodingLabel- the label to translate- Returns:
- the normalized encoding name or null if not found
-
translateEncodingLabel
Translates the given encoding label into a normalized form according to Reference.- Parameters:
encodingLabel- the label to translate- Returns:
- the normalized encoding name or null if not found
-
sniffEncodingFromMetaTag(InputStream),sniffEncodingFromXmlDeclaration(InputStream), orsniffEncodingFromCssDeclaration(InputStream)instead