如何使用 HtmlUnit 发布 HEAD 请求?

发布于 2024-08-21 22:13:55 字数 59 浏览 6 评论 0原文

如何使用现有的 WebClient 发布自定义 HEAD 请求?即页面上没有表单,我想手动设置请求属性。

How can I use existing WebClient to post a custom HEAD request? I.e. there is no form on the page, I want to set request properties manually.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪冰清 2024-08-28 22:13:55

使用 WebClient#getPage() 传递 WebRequestSettings,您可以在其中使用 HttpMethodHEAD

因此,基本上:

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

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));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文