1

我有一个自定义格式的 xml 文件,我试图将其存储在字符串中。我仍然是 java 的初学者并且已经搜索了论坛,但是提出的 xml 问题似乎已经与标准 xml 格式的 xml 格式有关。

我必须使用的 xml 格式如下:

<playList baseUrl= "Webaddress"
<file name="xxxxxxx.xxx" showTime="YYYY-MM-DD HH:MM" />
<file name="xxxxxxx.xxx" showTime="YYYY-MM-DD HH:MM" />
.......
</playList>

我一直在尝试 XML 解析的示例代码,但这是专门设置的。我已经尝试了几个小时来克服这个问题,但我什至试图将字符串拉入我的代码中。

我一直在看这里的教程http://www.androidhive.info/2011/11/android-xml-parsing-tutorial/但我仍然坚持导入 xml 文件。我相信它与哈希图代码有关,因为我的 xml 格式与标准标签 <> <> 不匹配。

这是我目前拥有的代码:

static final String KEY_ITEM ="playlist";
static final String KEY_NAME = "name";
static final String KEY_DESC = "showTime";


    XMLParser parser = new XMLParser();
    String xml = parser.getXmlFromUrl(URL); // getting XML
    Document doc = parser.getDomElement(xml); // getting DOM element

    NodeList nl = doc.getElementsByTagName(KEY_ITEM);


    // looping through all item nodes <item>
    for (int i = 0; i < nl.getLength(); i++) {
        // creating new HashMap
        HashMap<String, String> map = new HashMap<String, String>();
        Element e = (Element) nl.item(i);
        map.put(KEY_COST, getString(e))
        // adding each child node to HashMap key => value
        map.put(KEY_NAME, parser.getValue(e, KEY_NAME));
        map.put(KEY_DESC, parser.getValue(e, KEY_DESC));

        // adding HashList to ArrayList
        menuItems.add(map);

任何帮助或帮助将不胜感激。

谢谢,

4

1 回答 1

0

如果我理解得很好,您希望得到以下输出:

xxxxxxx.xx1

YYYY-MM-DD HH:MM

ETC....

我通过在以下操作中获取 NamedNodeMap 来完成此操作:

要获取第一行的属性属性:

xxxxxxx.xx1

doc.getElementsByTagName("file").item(1).getAttributes().item(0).getTextContent();

YYYY-MM-DD HH:MM

doc.getElementsByTagName("file").item(0).getAttributes().item(1).getTextContent();

第二行:

xxxxxx.xx2

doc.getElementsByTagName("file").item(1).getAttributes().item(0).getTextContent();

YYYY-MM-DD HH:MM

doc.getElementsByTagName("file").item(1).getAttributes().item(1).getTextContent();

如果您只想在引号之间添加文本,只需添加.getTextContent()。如果没有,您将得到以下输出 -> name="xxxxxxx.xx2" 。
然后您可以将这些值设置为您的 HashMap。

您还应该查看您的 xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<playList baseUrl= "Webaddress">
<file name="xxxxxxx.xx1" showTime="YYYY-MM-DD HH:MM" />
<file name="xxxxxxx.xx2" showTime="YYYY-MM-DD HH:MM" />
</playList>

为我工作

希望对您有所帮助;)

于 2012-12-03T06:19:23.523 回答