帮我解决个难题吧。有关org.w3c.dom.Node

困扰我半天了。

jdk为1.5

就这段代码:

getElementStringValue(){

....

return node.getTextContent(); // node is a Node and not is null

....

}

我是循环读取得每个node的值的,作为application,在celipse中可以执行。

若在一个servlet中调用这个方法,则:

1。tomcat(5.5.9)毫无反应,甚至这个方法的调用者的调用者都不继续走了。在try   catch 中无错误。

2。在resin(2.1.16)中,出现如下错误

java.lang.UnsupportedOperationException
        at com.caucho.xml.QAbstractNode.getTextContent(QAbstractNode.java:301)
        at com.xx.xx.xml.XMLUtil.getElementStringValue(XMLUtil.java:88)

神啊,帮我。

你可能感兴趣的:(jdk,tomcat,servlet,null,application)