第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Dom4j怎么獲取xml文件中某元素所在的行號?

Dom4j怎么獲取xml文件中某元素所在的行號?

qq_花開花謝_0 2019-04-04 11:07:48
Dom4j怎么獲取xml文件中某元素所在的行號
查看完整描述

4 回答

?
狐的傳說

TA貢獻(xiàn)1804條經(jīng)驗 獲得超3個贊

dom4j中,使用Element.attributes方法可以獲取到節(jié)點的屬性,而使用elements則可以獲取相應(yīng)的子節(jié)點
比如:
Element root = doc.getRootElement();
List attrList = root.attributes();
for (int i = 0; i < attrList.size(); i++) {
//屬性的取得
Attribute item = (Attribute)attrList.get(i);
System.out.println(item.getName() + "=" + item.getValue());
}
List childList = root.elements();
for (int i = 0; i < childList.size(); i++) {
//子節(jié)點的操作
Element it = (Element) childList.get(i);
//對子節(jié)點進(jìn)行其它操作...
}

查看完整回答
反對 回復(fù) 2019-04-09
  • 4 回答
  • 0 關(guān)注
  • 1727 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號