2
XML:錯誤:org.apache.xerces.dom.DeferredTextImpl不能轉換爲org.w3c.dom.Element中
<nativeInformation>
<detail id="natural:fieldFormat">A</detail>
</nativeInformation>
我想拿到 「身份證」 的價值。但不斷收到此錯誤:org.apache.xerces.dom.DeferredTextImpl不能轉換爲org.w3c.dom.Element中
我的代碼:
for (int i = 0; i < nodeList.getLength(); i++) {
String s;
Node n = nodeList.item(i);
Attr attrName = ((Element) n).getAttributeNode("id");
if (attrName.getValue()!=null) {
s = attrName.getValue();
System.out.println(s);
}
}
如果我寫的內容:System.out.println( 「父節點是」+ n.getParentNode());在for循環,這將給我,[詳細:null]
任何幫助將非常感激。