このxmlファイルを解析するJavaクラスを開発しています:
<document src="xmls/sections/modules/200_1.xml">
<module name="product_info" id="1">
<product_primary_id>200</product_primary_id>
<product_section_id>1</product_section_id>
<product_section_item_id></product_section_item_id>
<type>1</type>
<position>1</position>
<align>top</align>
<url href="productview/info.html"></url>
</module>
</document>
そして、私はこのJavaクラスを持っています:
try {
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(contingut);
doc.getDocumentElement().normalize();
//loop a cada module
NodeList nodes = doc.getElementsByTagName("module");
for (int i = 0; i < nodes.getLength(); i++) {
Node node = nodes.item(i);
Element element = (Element) node;
if(element.getNodeType() == Element.ELEMENT_NODE){
Log.d("debugging","product_primary_id: "+getValue("product_primary_id",element));
Log.d("debugging","product_section_id: "+getValue("product_section_id",element));
//Log.d("debugging","product_section_item_id: "+getValue("product_section_item_id",element));
Log.d("debugging","type: "+getValue("type",element));
Log.d("debugging","position: "+getValue("position",element));
Log.d("debugging","align: "+getValue("align",element));
//Log.d("debugging","url: "+getValue("url",element));
}
}
} catch (Exception e){
e.printStackTrace();
}
ご覧のとおり、すべての「モジュール」タグに対してループし、その子の値を取得しています。しかし、モジュールから name 属性が必要ですが、それは NodeList であるため、メソッドを使用できませんgetAttribute("name");
何か案が?