The XMLInputStream class of the com.ms.xml.util package is an input stream reader, specifically designed to handle different encoding formats and little endian files.
public class XMLInputStream extends InputStream { // Constructors public XMLInputStream(InputStream in); public XMLInputStream(URL url) throws IOException; // Methods public void close() throws IOException; public XMLOutputStream createOutputStream(OutputStream out); public int read() throws IOException; public void setEncoding(String encoding) throws IOException; // Fields public boolean caseInsensitive; }
InputStream | +--XMLInputStream