码迷,mamicode.com
首页 > 编程语言 > 详细

java解析xml禁止校验dtd

时间:2014-10-21 19:13:06      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   使用   java   sp   

参考:

 

问题:

解析xml时,报找不到.dtd错误,从而解析错。

 

解决方法:

在使用builder解析之前,设置禁止校验dtd。

builder.setEntityResolver(
                new EntityResolver(){
                   public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException
                   {
                       return new InputSource(new StringBufferInputStream(""));   
//                       return null;//这个的效果仍然是从网络来抓取DTD来验证
                       }
                }
            );

 

java解析xml禁止校验dtd

标签:style   blog   http   color   io   ar   使用   java   sp   

原文地址:http://www.cnblogs.com/hf-cherish/p/4040935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!