Hey , can any one tell me how JDOM parser works intenally. How does it
take an XML document and Parse it i.e read or write into an Xml file??
Dipali
Arne Vajhøj - 31 Oct 2006 13:14 GMT
> Hey , can any one tell me how JDOM parser works intenally. How does it
> take an XML document and Parse it i.e read or write into an Xml file??
It is open source, so you can download and read yourself.
Arne
Dan P - 31 Oct 2006 14:04 GMT
> Hey , can any one tell me how JDOM parser works intenally. How does it
> take an XML document and Parse it i.e read or write into an Xml file??
I'd guess it uses SAX to parse through the elements and create the the
objects in memory.
Arne Vajhøj - 01 Nov 2006 01:53 GMT
>> Hey , can any one tell me how JDOM parser works intenally. How does it
>> take an XML document and Parse it i.e read or write into an Xml file??
>
> I'd guess it uses SAX to parse through the elements and create the the
> objects in memory.
I think that depends on whether the code uses DOMBuilder or SAXBuilder !
:-)
Arne