典型的なSAXパーサー-endElementからリストを作成しています。特定の地域の結果のみを取得する必要があります。結果を修飾するためにリージョン値をハンドラーに渡す方法がわかりません。
提案?
ありがとう
@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);