public class XmlStreamReader
extends java.io.Reader
IMPORTANT: This class is not related in any way to the org.xml.sax.XMLReader. This one IS a character stream.
All this has to be done without consuming characters from the stream, if not the XML parser will not recognized the document as a valid XML. This is not 100% true, but it's close enough (UTF-8 BOM is not handled by all parsers right now, XmlStreamReader handles it and things work in all parsers).
The XmlStreamReader class handles the charset encoding of XML documents in Files, raw streams and HTTP streams by offering a wide set of constructors.
By default the charset encoding detection is lenient, the constructor with the lenient flag can be used for a script (following HTTP MIME and XML specifications). All this is nicely explained by Mark Pilgrim in his blog, Determining the character encoding of a feed.
To build an instance, see XmlStreamReader.Builder
.
Originally developed for ROME under Apache License 2.0.
XmlStreamWriter
Modifier and Type | Class and Description |
---|---|
static class |
XmlStreamReader.Builder
Builds a new
XmlStreamWriter instance. |
Modifier and Type | Field and Description |
---|---|
static java.util.regex.Pattern |
ENCODING_PATTERN
Pattern capturing the encoding of the "xml" processing instruction.
|
Constructor and Description |
---|
XmlStreamReader(java.io.File file)
Deprecated.
|
XmlStreamReader(java.io.InputStream inputStream)
Deprecated.
|
XmlStreamReader(java.io.InputStream inputStream,
boolean lenient)
Deprecated.
|
XmlStreamReader(java.io.InputStream inputStream,
boolean lenient,
java.lang.String defaultEncoding)
Deprecated.
|
XmlStreamReader(java.io.InputStream inputStream,
java.lang.String httpContentType)
Deprecated.
|
XmlStreamReader(java.io.InputStream inputStream,
java.lang.String httpContentType,
boolean lenient)
Deprecated.
|
XmlStreamReader(java.io.InputStream inputStream,
java.lang.String httpContentType,
boolean lenient,
java.lang.String defaultEncoding)
Deprecated.
|
XmlStreamReader(java.nio.file.Path file)
Deprecated.
|
XmlStreamReader(java.net.URL url)
Constructs a Reader using the InputStream of a URL.
|
XmlStreamReader(java.net.URLConnection urlConnection,
java.lang.String defaultEncoding)
Constructs a Reader using the InputStream of a URLConnection.
|
Modifier and Type | Method and Description |
---|---|
static XmlStreamReader.Builder |
builder()
Constructs a new
XmlStreamReader.Builder . |
void |
close()
Closes the XmlStreamReader stream.
|
java.lang.String |
getDefaultEncoding()
Gets the default encoding to use if none is set in HTTP content-type, XML prolog and the rules based on content-type are not adequate.
|
java.lang.String |
getEncoding()
Gets the charset encoding of the XmlStreamReader.
|
int |
read(char[] buf,
int offset,
int len)
Reads the underlying reader's
read(char[], int, int) method. |
public static final java.util.regex.Pattern ENCODING_PATTERN
@Deprecated public XmlStreamReader(java.io.File file) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
It looks for the UTF-8 BOM first, if none sniffs the XML prolog charset, if this is also missing defaults to UTF-8.
It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.
file
- File to create a Reader from.java.lang.NullPointerException
- if the input is null
.java.io.IOException
- thrown if there is a problem reading the file.@Deprecated public XmlStreamReader(java.io.InputStream inputStream) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
It follows the same logic used for files.
It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.
inputStream
- InputStream to create a Reader from.java.lang.NullPointerException
- if the input stream is null
.java.io.IOException
- thrown if there is a problem reading the stream.@Deprecated public XmlStreamReader(java.io.InputStream inputStream, boolean lenient) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
It follows the same logic used for files.
If lenient detection is indicated and the detection above fails as per specifications it then attempts the following:
If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again.
Else if the XML prolog had a charset encoding that encoding is used.
Else if the content type had a charset encoding that encoding is used.
Else 'UTF-8' is used.
If lenient detection is indicated an XmlStreamReaderException is never thrown.
inputStream
- InputStream to create a Reader from.lenient
- indicates if the charset encoding detection should be relaxed.java.lang.NullPointerException
- if the input stream is null
.java.io.IOException
- thrown if there is a problem reading the stream.XmlStreamReaderException
- thrown if the charset encoding could not be determined according to the specification.@Deprecated public XmlStreamReader(java.io.InputStream inputStream, boolean lenient, java.lang.String defaultEncoding) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
It follows the same logic used for files.
If lenient detection is indicated and the detection above fails as per specifications it then attempts the following:
If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again.
Else if the XML prolog had a charset encoding that encoding is used.
Else if the content type had a charset encoding that encoding is used.
Else 'UTF-8' is used.
If lenient detection is indicated an XmlStreamReaderException is never thrown.
inputStream
- InputStream to create a Reader from.lenient
- indicates if the charset encoding detection should be relaxed.defaultEncoding
- The default encodingjava.lang.NullPointerException
- if the input stream is null
.java.io.IOException
- thrown if there is a problem reading the stream.XmlStreamReaderException
- thrown if the charset encoding could not be determined according to the specification.@Deprecated public XmlStreamReader(java.io.InputStream inputStream, java.lang.String httpContentType) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
First it checks if the stream has BOM. If there is not BOM checks the content-type encoding. If there is not content-type encoding checks the XML prolog encoding. If there is not XML prolog encoding uses the default encoding mandated by the content-type MIME type.
It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.
inputStream
- InputStream to create the reader from.httpContentType
- content-type header to use for the resolution of the charset encoding.java.lang.NullPointerException
- if the input stream is null
.java.io.IOException
- thrown if there is a problem reading the file.@Deprecated public XmlStreamReader(java.io.InputStream inputStream, java.lang.String httpContentType, boolean lenient) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
First it checks if the stream has BOM. If there is not BOM checks the content-type encoding. If there is not content-type encoding checks the XML prolog encoding. If there is not XML prolog encoding uses the default encoding mandated by the content-type MIME type.
If lenient detection is indicated and the detection above fails as per specifications it then attempts the following:
If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again.
Else if the XML prolog had a charset encoding that encoding is used.
Else if the content type had a charset encoding that encoding is used.
Else 'UTF-8' is used.
If lenient detection is indicated an XmlStreamReaderException is never thrown.
inputStream
- InputStream to create the reader from.httpContentType
- content-type header to use for the resolution of the charset encoding.lenient
- indicates if the charset encoding detection should be relaxed.java.lang.NullPointerException
- if the input stream is null
.java.io.IOException
- thrown if there is a problem reading the file.XmlStreamReaderException
- thrown if the charset encoding could not be determined according to the specification.@Deprecated public XmlStreamReader(java.io.InputStream inputStream, java.lang.String httpContentType, boolean lenient, java.lang.String defaultEncoding) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
First it checks if the stream has BOM. If there is not BOM checks the content-type encoding. If there is not content-type encoding checks the XML prolog encoding. If there is not XML prolog encoding uses the default encoding mandated by the content-type MIME type.
If lenient detection is indicated and the detection above fails as per specifications it then attempts the following:
If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again.
Else if the XML prolog had a charset encoding that encoding is used.
Else if the content type had a charset encoding that encoding is used.
Else 'UTF-8' is used.
If lenient detection is indicated an XmlStreamReaderException is never thrown.
inputStream
- InputStream to create the reader from.httpContentType
- content-type header to use for the resolution of the charset encoding.lenient
- indicates if the charset encoding detection should be relaxed.defaultEncoding
- The default encodingjava.lang.NullPointerException
- if the input stream is null
.java.io.IOException
- thrown if there is a problem reading the file.XmlStreamReaderException
- thrown if the charset encoding could not be determined according to the specification.@Deprecated public XmlStreamReader(java.nio.file.Path file) throws java.io.IOException
builder()
, XmlStreamReader.Builder
, and XmlStreamReader.Builder.get()
It looks for the UTF-8 BOM first, if none sniffs the XML prolog charset, if this is also missing defaults to UTF-8.
It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.
file
- File to create a Reader from.java.lang.NullPointerException
- if the input is null
.java.io.IOException
- thrown if there is a problem reading the file.public XmlStreamReader(java.net.URL url) throws java.io.IOException
If the URL is not of type HTTP and there is not 'content-type' header in the fetched data it uses the same logic used for Files.
If the URL is a HTTP Url or there is a 'content-type' header in the fetched data it uses the same logic used for an InputStream with content-type.
It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.
url
- URL to create a Reader from.java.lang.NullPointerException
- if the input is null
.java.io.IOException
- thrown if there is a problem reading the stream of the URL.public XmlStreamReader(java.net.URLConnection urlConnection, java.lang.String defaultEncoding) throws java.io.IOException
If the URLConnection is not of type HttpURLConnection and there is not 'content-type' header in the fetched data it uses the same logic used for files.
If the URLConnection is a HTTP Url or there is a 'content-type' header in the fetched data it uses the same logic used for an InputStream with content-type.
It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.
urlConnection
- URLConnection to create a Reader from.defaultEncoding
- The default encodingjava.lang.NullPointerException
- if the input is null
.java.io.IOException
- thrown if there is a problem reading the stream of the URLConnection.public static XmlStreamReader.Builder builder()
XmlStreamReader.Builder
.XmlStreamReader.Builder
.public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.Reader
java.io.IOException
- thrown if there was a problem closing the stream.public java.lang.String getDefaultEncoding()
If it is NULL the content-type based rules are used.
public java.lang.String getEncoding()
public int read(char[] buf, int offset, int len) throws java.io.IOException
read(char[], int, int)
method.read
in class java.io.Reader
buf
- the buffer to read the characters intooffset
- The start offsetlen
- The number of bytes to readjava.io.IOException
- if an I/O error occurs.Copyright © 2010 - 2023 Adobe. All Rights Reserved