如何在任何时候停止使用SAX解析xml文档?
我用Sax解析一个大的XML文档,我想在某些条件成立时停止解析文档? 怎么做?
创建SAXException的专门化并抛出它(您不必创建自己的专业化,但它意味着您可以自己专门捕获它并将其他SAXException作为实际错误处理)。
public class MySAXTerminatorException extends SAXException {
...
}
public void startElement (String namespaceUri, String localName,
String qualifiedName, Attributes attributes)
throws SAXException {
if (someConditionOrOther) {
throw new MySAXTerminatorException();
}
...
}
我不知道有一种机制可以放弃除了汤姆概述的异常抛出技术之外的SAX解析。 另一种方法是切换到使用StAX解析器(请参阅pull vs push)。
我使用布尔变量“ stopParse
”来消费监听器,因为我不想使用throw new SAXException()
;
private boolean stopParse;
article.getChild("title").setEndTextElementListener(new EndTextElementListener(){
public void end(String body) {
if(stopParse) {
return; //if stopParse is true consume the listener.
}
setTitle(body);
}
});
更新:
@PanuHaaramo,suposting有这个.xml
<root>
<article>
<title>Jorgesys</title>
</article>
<article>
<title>Android</title>
</article>
<article>
<title>Java</title>
</article>
</root>
解析器使用android SAX获取“title”值必须是:
import android.sax.Element;
import android.sax.EndTextElementListener;
import android.sax.RootElement;
...
...
...
RootElement root = new RootElement("root");
Element article= root.getChild("article");
article.getChild("title").setEndTextElementListener(new EndTextElementListener(){
public void end(String body) {
if(stopParse) {
return; //if stopParse is true consume the listener.
}
setTitle(body);
}
});
链接地址: http://www.djcxy.com/p/91083.html
上一篇: How to stop parsing xml document with SAX at any time?
下一篇: The TActionMainMenuBar main menu item switch stutters in Delphi 7