Hi,
I am using Xerces with Sax2 to do the parsing. I
can get element values using the following checking
in endElement(...,
String localName, ...) method:
if(localName.equal("Element1")){
//get element value
}
If Element1 has several attributes: att1 = "value1" att2="value2",
how do I get these attribute values while checking attribute names?
thanks in advance