解析android中的xml文件

时间:2015-02-04 12:10:24

标签: android xml-parsing android-xmlpullparser

我有一个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();
}

我在这里缺少的是,当我打印标签值时,我没有任何价值。

请建议/帮助我如何阅读此格式?如果这种格式有任何其他依赖,如schema / DTD,请告诉我,因为我完全不知道正确的流程。请建议我一些网站,我也可以在哪里验证我的xml文件。

2 个答案:

答案 0 :(得分:0)

以这种格式带来xml-File:

<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);
        }
}

希望有所帮助

答案 1 :(得分:0)