I am currently developing an app that retrieves data from the internet using SAX. I used it before for parsing simple XML files like Google Weather API. However, the websites that I am interested in take parsing to the next level. The page is huge and looks messy. I only need to retrieve some specific lines; the rest is not useful for me.
Is it possible to skip those useless lines/tags, or do I have to go step by step?
问题:
回答1:
I like commons-digester. It allows you to specify rules against particular tags. The rule gets executed only when the tag is encountered.
Digester is built over sax and hence has all the sax features plus the specificity that is required for selectively parsing specific tags. It also uses a stack that is pushed with new elements as and when the corresponding tag is encountered and is popped when the element ends.
I use it for parsing all my configuration files.
Check out digester at http://commons.apache.org/digester/
回答2:
Yes you can do it, just ignore the tags you are not interested in. But note that the entire document will have to be parsed for this (DefaultHandler impl)
public startElement(String uri, String localName,
String qName, Attributes attributes) {
if(localName.equals("myInterestingTag") {
// do your thing....
}
}
public void endElement(String uri, String localName, String qName) {
if(localName.equals("myInterestingTag") {
// do your thing....
}
}
public void characters(char[] ch, int start, int length) {
// if parsing myinteresting tag... do some stuff.
}
回答3:
Yes, you can skip. Just define those tag which you want and it will only fetch those tag values.
回答4:
You can try to use XPath which will use SAX behind the scene to parse your xml. The downside here is that XML will be parsed on every call of Xpath evaluate method.
回答5:
You you want to read specific tags then DOM parser is much faster than SAX parser..SAX parser is useful if you want to parse big XML files..
回答6:
You can try a combination of TagSoup for creating a parseable XML document and XPath for fetching the interesting parts.
回答7:
See my answer to a similar question for a strategy of using SAX to skip/ignore tags:
Skipping nodes with sax
It involves switching ContentHandlers on the XMLReader. When you read a porting of the XML document you want to skip you simply swap in a ContentHandler that does nothing with the events. When the end of the section to be ignored is reached it passes control back to the content handler you were using to process the XML content.