超时抛出什么异常?
HTMLUnit 中的连接超时抛出什么异常?
What Exception is thrown on connection timeout in HTMLUnit ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
HTMLUnit 中的连接超时抛出什么异常?
What Exception is thrown on connection timeout in HTMLUnit ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
HtmlUnit 使用 Apache HttpClient。超时机制抛出 InterruptedIOException。
请参阅 HttpClient 文档。
此异常是 IOException 的子类,可以在任何 HttpClient 执行调用期间引发(基本上每当您获取带有 HtmlUnit WebClient 的页面时)。
HtmlUnit uses the Apache HttpClient. The timeout mechanism throws an InterruptedIOException.
See the HttpClient documentation.
This exception is a subclass of IOException, which can be thrown during any HttpClient execute call (basically whenever you get a page with an HtmlUnit WebClient.
我认为有一个错误,它确实应该抛出异常,但如果您设置的超时大于某个值,则不会抛出异常,您可以在 (从 htmlunit WebClient 调用 getPage,禁用 JavaScript 并将 setTimeout 设置为 10000 永远等待)
非常感谢
I think there is a bug, it really should throw a exception but dont throw if you set an timeout great than a value, you can see it in (Call getPage from htmlunit WebClient with JavaScript disabled and setTimeout set to 10000 waits forever)
Thanks a lot