M
Mize-ze
I am using SAX to parse an XML file.
I want to get the "characters" of a specific tag (element)
Right now I extend the DefaultHandler and override public void
characters(char[] ch, int start, int length) method. but this event is
raised whenever there is content in a tag.
How can I get a specific charcters from an element using SAX
I don't have access to the qName from this event.
Any ideas?
Thanks.
I want to get the "characters" of a specific tag (element)
Right now I extend the DefaultHandler and override public void
characters(char[] ch, int start, int length) method. but this event is
raised whenever there is content in a tag.
How can I get a specific charcters from an element using SAX
I don't have access to the qName from this event.
Any ideas?
Thanks.