应用程序引擎对 HtmlUnit 的支持
我正在尝试使用 HtmlUnit 来获取网页的 DOM。但是,当我尝试在应用程序引擎开发服务器上运行此代码(使用 eclipse 插件)时:
WebClient wc=new WebClient();
HtmlPage page1= wc.getPage("http://ww.google.com/");
我收到此异常:
java.net.URLStreamHandler is a restricted class.
Is it not possible to use HtmlUnit on app engine?
I'm trying to use HtmlUnit to get DOM of webpages. However, when I try to run this code on app engine development server (using the eclipse plugin):
WebClient wc=new WebClient();
HtmlPage page1= wc.getPage("http://ww.google.com/");
I get this exception:
java.net.URLStreamHandler is a restricted class.
Is it not possible to use HtmlUnit on app engine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,HtmlUnit 目前无法在应用程序引擎沙箱中工作。
不过,适用于 GAE 的 HtmlUnit 补丁正在进行中。 HtmlUnit 的错误跟踪器问题 2962074讨论了使 HtmlUnit 在 GAE 上工作,并提供了实现此目的的初步补丁。
No, HtmlUnit will not work in the app engine sandbox at this time.
However, a patch for HtmlUnit to work on GAE is in progress. HtmlUnit's bug tracker issue 2962074 discusses making HtmlUnit work on GAE, and provides a preliminary patch for accomplishing this.
我的印象是 HtmlUnit 2.8 应该可以工作。
你用什么版本?
I am under the impression that HtmlUnit 2.8 should work.
What version do you use?