首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

dom4j读取xml的一个结点,该怎么处理

2013-01-04 
dom4j读取xml的一个结点如题xml:AB500/BC3/CD1/DB600/B/A我现在要取C标签 但我只会取

dom4j读取xml的一个结点
如题
xml:


      <A>
        <B>500</B>
        <C>3</C>
        <D>1</D>
        <B>600</B>
      </A>


我现在要取C标签 但我只会取所有C标签的List 有没有方法可以直接取C标签

我的java代码 dom4j


            xmlFile=new File(path + "xml.xml");                  
            SAXReader reader=new SAXReader();    
            Document xmlDoc=reader.read(xmlFile);    
            Element root=xmlDoc.getRootElement();   
            listTime=xmlDoc.selectNodes("//A/C");


现在listTime里是所有c标签的list 能不能直接读取某个标签下的值
[解决办法]
//C[position()=3]

热点排行