Hi,
I have a substantial xml file, which represents a large chunk of system
data. In one part of my application I want to retrieve three or four
elements from this xml.
At this point, I do not have the XML stored in memory as a DOM. It
seems like a lot of processing to convert it into a DOM just to
retrieve a few elements, likewise, I have no idea where in the file the
elements are, so it take some time to parse it using SAX.
Does anyone have any suggestions on how I could simply and quickly
extract the elements I need without having to process the whole xml
file?
Thank you,
Laura
I have a substantial xml file, which represents a large chunk of system
data. In one part of my application I want to retrieve three or four
elements from this xml.
At this point, I do not have the XML stored in memory as a DOM. It
seems like a lot of processing to convert it into a DOM just to
retrieve a few elements, likewise, I have no idea where in the file the
elements are, so it take some time to parse it using SAX.
Does anyone have any suggestions on how I could simply and quickly
extract the elements I need without having to process the whole xml
file?
Thank you,
Laura
Comment