在解析XML文件时,我的documentbuilder正在寻找DTD,有时它会用来抛出错误(服务器崩溃)。所以当我用Google搜索时,我从这里得到了以下解决方案Ignoring the DTD while parsing XML(我使用的解决方案是VOTE --- 90)。我的IDE中的字母显示以下错误。
The method setFeature(String, boolean) is undefined for the type DocumentBuilderFactory
然后我认为我的maven版本的问题然后我找到了以下链接。
What is the jar file I should download and from where?
其中说它内置在JDK中,因此IDE本身会建议我进口。
我的JDK版本是
java version" 1.8.0_121" Java(TM)SE运行时环境(版本1.8.0_121-b13) Java HotSpot(TM)64位服务器VM(版本25.121-b13,混合模式)
答案 0 :(得分:4)