public void parse(final InputStream inputStream, final String encoding) throws IOException,
ResourceStreamNotFoundException
{
try
{
this.xmlReader = new XmlReader(
new BufferedInputStream(inputStream, 4000), encoding);
this.input = new FullyBufferedReader(this.xmlReader);
}
finally
{