典型的 SAX 解析器 - 我正在从 endElement 构建一个列表。我只需要提取某个区域的结果。我不确定如何将区域值传递给 Handler 来限定我的结果。
建议?
谢谢
@Override
public void endElement(String inUri, String inLocalName, String inQName) throws SAXException
{
currentElement = false;
// Title
if (inLocalName.equalsIgnoreCase(_nodeMain))
{
// Construct a Representative object
PropertiesCust _custObject = new PropertiesCust(_titleValue, _address1Value, _address2Value);
cList.add(_custObject);