Dato questo frammento XMLSAX parsing - modo efficiente per ottenere i nodi di testo
<?xml version="1.0"?>
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
In SAX, è facile da ottenere valori degli attributi:
@Override
public void startElement (String uri, String localName,
String qName, Attributes attributes) throws SAXException{
if(qName.equals("book")){
String bookId = attributes.getValue("id");
...
}
}
Ma per ottenere il valore di un nodo di testo , per esempio il valore del tag <author>
, è abbastanza difficile ...
private StringBuffer curCharValue = new StringBuffer(1024);
@Override
public void startElement (String uri, String localName,
String qName, Attributes attributes) throws SAXException {
if(qName.equals("author")){
curCharValue.clear();
}
}
@Override
public void characters (char ch[], int start, int length) throws SAXException
{
//already synchronized
curCharValue.append(char, start, length);
}
@Override
public void endElement (String uri, String localName, String qName)
throws SAXException
{
if(qName.equals("author")){
String author = curCharValue.toString();
}
}
- Non sono sicuro che il campione di cui sopra è ancora lavorando, cosa ne pensate di questo approccio?
- C'è un modo migliore? (per ottenere il valore del nodo di testo)
è il più efficiente penso ... – nanda