D
Donkey Hottie
So I have written own code which writes XML.
Now I need to read and unmarshall it back to Java objects. Writing XML is
not hard, but reading it without SAX or DOM seems too much done when there
is old and good solutions.
But it seems that org.xml.sax.*, org.w3c.dom.* and javax.xml.* all define
only interfaces for parser, and they rely on Apache Xerces or another 3rd
party parser.
My boss does not want Open Source, and propably is not willing to pay for a
3rd party parser.
How to parse.... without Open Source or rolling my own..
Now I need to read and unmarshall it back to Java objects. Writing XML is
not hard, but reading it without SAX or DOM seems too much done when there
is old and good solutions.
But it seems that org.xml.sax.*, org.w3c.dom.* and javax.xml.* all define
only interfaces for parser, and they rely on Apache Xerces or another 3rd
party parser.
My boss does not want Open Source, and propably is not willing to pay for a
3rd party parser.
How to parse.... without Open Source or rolling my own..