`
cristal
  • 浏览: 27757 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

Dom4J中出现Connection Timeout

阅读更多
使用dom4j的时候,SAXReader在打开文档的时候出现DocumentException: Connection TimeOut或者Operation timeout,这通常是发生在dom4j验证DTD的时候,如果机器没有联网,或者使用了proxy联网,dom4j就不能验证了,解决方式:

SAXReader reader = new SAXReader(false);
reader.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);


这告诉dom4j不要去load外部的DTD了。
分享到:
评论

相关推荐

    在IDEA的maven项目中连接并使用MySQL8.0的方法教程

    这个类将使用DOM4J解析`JDBC.xml`文件,并通过`DriverManager.getConnection()`方法建立与数据库的连接。 ```java package com.langsin.jdbcutil; import org.dom4j.Document; import org.dom4j.Element; import ...

    struts2.1.8 + spring2.5.6 + hibernate3.3.2整合

    <property name="hibernate.c3p0.timeout">5000 ``` #### 四、整合步骤 1. **环境准备**: - 准备好所需的JAR包,并添加到项目的类路径中。 - 配置好各个框架的基本配置文件。 2. **配置Spring**: - 在...

    hibernate_3配置文件参数汇总

    - `hibernate.default_entity_mode`:定义实体的默认表示方式,比如使用POJOs(Plain Old Java Objects)或DOM4J。 理解并正确配置这些参数对优化Hibernate性能和实现高效数据库交互至关重要。在实际开发中,...

    TinyXML指南[中文].pdf

    <Connection ip="192.168.0.1" timeout="123.456000"/> ``` #### 五、总结 通过以上内容的学习,我们可以了解到TinyXML不仅是一个强大的XML解析工具,而且在实际开发中非常实用。无论是对于初学者还是经验丰富...

    用jsoup抓取网页数据

    .timeout(10000) // 设置超时时间为10秒 .followRedirects(true); // 允许重定向 Document doc = connection.get(); ``` ### 8. 性能优化 对于大量数据的抓取,考虑使用多线程或者异步请求来提高效率。同时,...

    java常用api

    - `@Test(timeout=...)`:限制测试用例的执行时间。 4. **JavaScript**:JavaScript是一种广泛应用于网页和Web应用的脚本语言,常常用于实现动态效果和与用户交互。JavaScript特效可能涵盖: - DOM操作:通过...

    JsoupConnectGet请求

    `timeout()`方法用于设置连接和读取的超时时间(以毫秒为单位): ```java conn.timeout(30000); // 30秒超时 ``` ### 3.4 其他配置 还可以配置是否启用JavaScript渲染(默认关闭)、是否允许重定向、是否跟随...

    demo-angular-socket.io:使用 AngularJS 和 Socket.IO

    然后,在`AngularJS` 的服务中注入`$rootScope`(根作用域)和`$timeout`,并创建一个新的服务来封装`Socket.IO` 的连接和事件监听。 ```javascript app.factory('socket', function($rootScope, $timeout) { var ...

    java jsoup爬虫代码

    conn.timeout(30000); // 设置超时 conn.execute(); // 先执行请求,获取Cookie等信息 conn.cookie("key", "value"); // 添加Cookie doc = conn.get(); // 获取HTML ``` 此外,文件`FindFileTool`可能是用于辅助...

    70个JAVA问答.txt

    可以使用`out.close()`来关闭输出流,这类似于ASP中的`response.end`。 ### 6. 获取请求页面的URL 可以通过`request.getHeader("referer")`来获取请求页面的URL,这在跟踪用户来源或进行日志记录时非常有用。 ###...

    于笑扬java综合知识点总结-必背.doc

    5. **java.sql**:用于数据库访问,如`Connection`、`Statement`等。 6. **javax.servlet**:Servlet API,支持Web应用程序开发。 #### 二、GET和POST的区别 - **GET**:用于获取资源,参数在URL中显示,不安全,...

    VB编程资源大全(英文源码 网络)

    al40.zip Apparently, if you use AOL to connect to the Internet and you do not touch it for 45 minutes it will timeout and drop the connection. This little program will ensure that it keeps the ...

    Sortable前端框架

    fallbackClass: "sortable-fallback", // Class name for the cloned DOM Element when using forceFallback fallbackOnBody: false, // Appends the cloned DOM Element into the Document's Body ...

    Sakemail

    ), now SakEmail deletes the invalid chars.- Applied a patch from Matjaz Bravc, that resolve the problem of localized dates, letting you choose (in design time) if you want localized dates (NOT ...

    Qemu-1.0.1 for windows

    connect the vlan 'n' to another VLAN using a socket connection -net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port[,localaddr=addr]] connect the vlan 'n' to multicast maddr and port use '...

Global site tag (gtag.js) - Google Analytics