在android中解析xml文件



我有一个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文件。

使用以下格式的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

相关内容

  • 没有找到相关文章

最新更新