This class has been deprecated. When reading XML, users are encouraged to pass the InputStream
directory to the MXParser.setInput(InputStream, String),
giving a null encoding to let the parser figure it out. For non xml usages, use the JDK
Files utility methods.
As of version 1.5.2 this class should no longer be used because it does not properly handle character
encoding. Instead, wrap the output from String.getBytes(String) into a
ByteArrayInputStream.
As of version 1.5.2 this class should no longer be used because it does not properly handle character
encoding. Instead, use ByteArrayOutputStream.toString(String).
This class has been deprecated. When writing XML, users can create the XmlStreamWriter instance
directly. For other usages, using Files helper methods is recommended.