Java org.apache.commons.io.input XmlStreamReader fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.input XmlStreamReader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.input XmlStreamReader.

The text is from its open source code.

Constructor

XmlStreamReader(File file)
Creates a Reader for a File.
XmlStreamReader(InputStream is)
Creates a Reader for a raw InputStream.
XmlStreamReader(URL url)
Creates a Reader using the InputStream of a URL.
XmlStreamReader(InputStream is, boolean lenient)
Creates a Reader for a raw InputStream.
XmlStreamReader(URLConnection conn, String defaultEncoding)
Creates a Reader using the InputStream of a URLConnection.
XmlStreamReader(InputStream is, String httpContentType)
Creates a Reader using an InputStream an the associated content-type header.
XmlStreamReader(InputStream is, boolean lenient, String defaultEncoding)
Creates a Reader for a raw InputStream.
XmlStreamReader(InputStream is, String httpContentType, boolean lenient)
Creates a Reader using an InputStream an the associated content-type header.
XmlStreamReader(InputStream is, String httpContentType, boolean lenient, String defaultEncoding)
Creates a Reader using an InputStream an the associated content-type header.

Method

voidclose()
Closes the XmlStreamReader stream.
StringgetEncoding()
Returns the charset encoding of the XmlStreamReader.