开发者

How to post HEAD request with HtmlUnit?

How can I use existing WebClient to post a custom HEAD request? I.e. there is no开发者_如何学Python form on the page, I want to set request properties manually.


Use WebClient#getPage() where you pass the WebRequestSettings in which you can construct with a HttpMethod of HEAD.

Thus, basically:

Page page = webClient.getPage(new WebRequestSettings(new URL("http://stackoverflow.com"), HttpMethod.HEAD));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜