1. 程式人生 > >The method getTextContent() is undefined for the type Node錯誤

The method getTextContent() is undefined for the type Node錯誤

重灌系統後開啟以前做的工程出現了這個錯誤

收集了一下錯誤原因

CSDN:

因為你呼叫的那個方法是jdk下的那個包裡的類,而在web專案裡卻呼叫了J2EE裡的xml-apis.jar下的org.w3c.dom。(實際上要呼叫的那個方法是在jdk下的rt.jar下的org.w3c.dom)。我也被這個問題困擾了很久,後來把jdk和J2EE在專案裡的位置調整了下就好了,即讓jdk在J2EE上面.

具體解決方法

eclipse 中 如果加入了 其他了xfire 等其他xml解析包的話,使用org.w3c.dom.Node下的getTextContent()方法會出現The method getTextContent() is undefined for the type Node 提示,解決方法如下:

project-->properties->java build path-->order and export  把JRE System 提升到頂部既可,前提記得是java版本是jdk1.5以上