3

我正在尝试使用“node.getNodeName()”从 XML 文件中检索所有节点的名称。这样做时,每个节点名称的前面和后面都是“#text”。因此,我也没有得到确切的节点数。我希望在检索名称时消除“#text”。我怎么做??

4

1 回答 1

12

接着就,随即 :

package com.hum;

import java.io.InputStreamReader;
import java.io.StringReader;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;

/**
 *
 * @author herve
 */
public class PrintNameXML
{
  public static void main(String[] args) throws Exception
  {
    String xml = "<a><o><u>ok</u></o></a>";
    Document doc = 
     DocumentBuilderFactory
     .newInstance()
     .newDocumentBuilder()
     .parse(new InputSource(new StringReader(xml)));
    NodeList nl = doc.getElementsByTagName("*");
    for (int i = 0; i < nl.getLength(); i++)
    {
      System.out.println("name is : "+nl.item(i).getNodeName());
    }
  }
}

我得到:

name is : a
name is : o
name is : u

是你搜索的吗?

于 2012-05-28T12:17:33.477 回答