我的 xml 包含一些 cdata
<desc><![CDATA[<p>This is my html text</p>]]></desc>
我的 SAX 解析器能够解析 xml cdata,但解析的文本包含标签“CDATA”
<![CDATA[<p>This is my html text</p>]]>
我只想获取 CDATA 中的 html 文本。我可以使用一些字符串函数来删除它,但我想知道这是否是正常的 SAX 行为?
这是我的 SAX 处理程序代码:
public class SAXXMLHandler extends DefaultHandler {
private List<Laptop> laptops;
private Laptop laptop;
private StringBuffer tempSB = new StringBuffer();
public SAXXMLHandler() {
laptops = new ArrayList<Laptop>();
}
public List<Laptop> getLaptops() {
return laptops;
}
// Event Handlers
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
tempSB.delete(0, tempSB.length());
if (qName.equalsIgnoreCase("laptop")) {
laptop = new Laptop();
laptop.setModel(attributes.getValue("model"));
}
}
public void characters(char[] ch, int start, int length)
throws SAXException {
tempSB.append(ch, start, length);
}
public void endElement(String uri, String localName, String qName)
throws SAXException {
if (qName.equalsIgnoreCase("laptop")) {
laptops.add(laptop);
} else if (qName.equalsIgnoreCase("id")) {
laptop.setId(Integer.parseInt(tempSB.toString()));
} else if (qName.equalsIgnoreCase("desc")) {
laptop.setDescription(tempSB.toString());
}
}
}