我有一个 xml 文件:
<root>
<book
name="Science1"
author="XYZ1">
</book>
<book
name="Science2"
author="XYZ2">
</book>
</root>
我想获取名称和作者的值。解析上述内容的 Java 代码:
Document doc = null;
try {
InputStream is = getResources().openRawResource(R.raw.xmldata);//newfile
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
doc = db.parse(new InputSource(is));
NodeList nl1 = doc.getElementsByTagName("book");
for (int i = 0; i < nl1.getLength(); i++) {
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
Element e = (Element) nl1.item(i);
// adding each child node to HashMap key => value
map.put(KEY_NAME, parser.getValue(e, KEY_NAME));
map.put(KEY_AUTHOR,parser.getValue(e, KEY_AUTHOR));
Log.d("Debug","Value + " + parser.getValue(e, KEY_NAME) + " " + parser.getValue(e, KEY_AUTHOR));
// adding HashList to ArrayList
menuItems.add(map);
}
}
catch(Exception e)
{
e.printStackTrace();
}
我在这里缺少什么,因为当我打印标签值时,我没有得到任何价值。
请建议/帮助我如何阅读这种格式?如果此格式有任何其他依赖项,例如要提供的架构/DTD,请告诉我,因为我完全不知道正确的流程。请向我推荐一些网站,我也可以在其中验证我的 xml 文件。