Hi & thanks,
Parsing a file would not normally be a problem, but as it is a
stream, there is no EOF and when I parse the stream into:
DocumentBuilder db =
DocumentBuilderFactory.newInstance().newDocumentBuilder();
db.parse(in);
I get:
org.xml.sax.SAXParseException: The processing instru
You can use different things, but directly programming
you can use SAX2, XMLReader, and
XMLReaderFactory.createXMLReadersee JDK javax.xml
package documentation. You could use a DOM object,
but I wouldn't recommend it because of memory usage.
You can change the underlying XML parser impls for
See XmlPull:
http://www.xmlpull.org/
On 8/15/05, Paul Wallace <[EMAIL PROTECTED]> wrote:
> Hi All,
>I have a socket receiving streams of XML. I receive an InputStream,
> but short of a dirty hack, do not know when (or how) I pass the
> stream/contents to be parsed. Any thoughts/resources