Markus Heller schrieb:
> Dear List,
>
> I would like to write a parser that gives me a tuple on each node: the
> path to a node and the pcdata, the container text. I managed to
> assemble the path information by recursively calling startElement from
> an instantiated defaultHandler.
>
> Though, now I would like to retrieve all that's in the container and I
> don't know how to do it best. Ideally, I would like to have the
> container contents together with the path information.
>
> How proceed?
Hi Markus,
since you want to retrieve all the information of a xml file, I'd suggest
to use a DOM parser and walk through the DOM tree.
Axel