Microsoft SDK for Java

XMLInputStream Class

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;
}

Hierarchy

InputStream
  |
  +--XMLInputStream

© 1999 Microsoft Corporation. All rights reserved. Terms of use.