1

我有这个 XML 文件:

<description>
  <![CDATA[
    <tag1 hello world/><br/> 
    <b>Current Conditions:</b>
  ]]>
</description>

我需要提取tag1,brb. 这是我的代码:

NodeList nl = eElement.getElementsByTagName("description");

for (int j = 0; j < nl.getLength(); j++) {
    Node n = nl.item(j);
    Element e = (Element)n;
    String s = getElement(e));
}


public static String getElement(Element e) {
    NodeList list = e.getChildNodes();
    String data;

    for(int index = 0; index < list.getLength(); index++){
        if(list.item(index) instanceof CharacterData){
            CharacterData child = (CharacterData) list.item(index);
            data = child.getData();

            if(data != null && data.trim().length() > 0)
                return child.getData();
        }
    }
    return "";
}

输出是:

<tag1 hello world/><br/> 
<b>Current Conditions:</b> 

但我需要String [] str具有以下值:

 str[0] = "hello world";
 str[1] = ""; 
 str[3] = "Current Condition:";
4

1 回答 1

2

CDATA 块的目的是将内容保存为未解析的字符数据(这就是您所看到的)。一旦你有了它,String你就可以解析它来访问它的数据。

于 2013-05-17T12:28:03.270 回答