[
Lists Home |
Date Index |
Thread Index
]
From: "K. Ari Krupnikov" <ari@cogsci.ed.ac.uk>
> > It's not that bad. If you use a standard SAX2 ContentHandler, you will
be
> > notified by startPrefixMapping() and endPrefixMapping() of all
> > prefix-to-namespace mappings. All you need to do is maintain a map of
> > prefix, namespace pairs and use the map when you need to get a namespace
for
> > a prefix.
>
> Bob, you don't have to keep track of anything yourself if you use
> SAX2, org.xml.sax.helpers.NamespaceSupport will do it for you if you
> need it, multiple prefixes and all. In particular, processName(),
> returns a 3-tuple based on a colonified name.
>
> I'm not sure if this answers the OP's question, though, or if he wants
> to use SAX at all.
Obviously, I didn't know that. Thanks!
The original question was "I want to use jaxp api's to parse <elem> into a
QName". Since you can get a SAX parser out of jaxp, I guess the answer is
good all around.
Bob
|