[
Lists Home |
Date Index |
Thread Index
]
> I need to write a java parser, sax I assume, that performs operations on a
> node passed as an xpath expression.
>
> Anyone know if this is possible without hand-coding between startElement &
> endElement ?
I'm not certain I understand the question, but his might help:
http://dom4j.org/
-- Has an ElementHandler interface for processing
sub-trees in a sax-like manner. Integrate jaxen.
http://jaxen.org/
-- An xpath engine. Integrated into dom4j, and compatible
with jdom, dom, exml, and dom4j.
-bob
|