Load partial xml using xerces dom parser

371 Views Asked by At

The xml file that i get is huge in size, however while i need only specific parts of the file in random manner (hence cannot use SAX) while processing. Is there any way by which i can load only a partial dom tree in memory using xerces dom parser?

1

There are 1 best solutions below

0
On

It sounds like what you want is something like Python's pulldom which Xerces does not offer.

If you are beholden to Xerces and memory is a primary concern, you could use Xerces SAX (push) parser to populate a data structure with only the data from the XML that you care about. Then you could "randomly" access the data that you are interested in.

If you are free to use other libraries, you might look into a StAX (pull) parser. Although, I think you will still have to implement your own data structure to hold the data you're interested in. I'm not aware of a C++ equivalent of Python's pulldom.