正在 android 中解析 xml 文件

Parsing a xml file in android

我有一个 xml 文件:

<root>
    <book
         name="Science1"
         author="XYZ1">
    </book>
    <book
         name="Science2"
         author="XYZ2">
    </book>
</root>

我想获取name和author的值。 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 文件。

将 xml- 文件导入此格式:

<root>
    <book name="Science1"
         author="XYZ1"/>
    <book name="Science2"
         author="XYZ2" />
</root>

比起你的 for 循环:

    for (int temp = 0; temp < nl1.getLength(); temp++) {
        HashMap<String, String> map = new HashMap<String, String>();
        Node nNode = nl1.item(temp);

        if (nNode.getNodeType() == Node.ELEMENT_NODE) {

            Element eElement = (Element) nNode;
            map.put(KEY_NAME, eElement.getAttribute("name"));
            map.put(KEY_AUTHOR, eElement.getAttribute("author"));
            menuItems.add(map);
        }
}

希望对您有所帮助

伙计,刚读完这个教程: http://developer.android.com/training/basics/network-ops/xml.html