Java+HtmlUnit—西里尔字母 urlencode 的问题

发布于 2024-11-05 05:56:57 字数 601 浏览 0 评论 0原文

我正在尝试将一些 HTTP POST 参数发送到某些 Web 服务器,并且其中一个参数包含西里尔字符。所以问题是,如果我使用此代码:


wc.getPage(requestSettings);

requestSettings.setHttpMethod(HttpMethod.POST);
requestSettings.setRequestParameters(new ArrayList());

requestSettings.getRequestParameters().add(new NameValuePair("username", "Друже бобер"));
wc.getPage(requestSettings);

服务器将收到下一个 urlencoded 参数: 在此处输入图像描述 这是错误解码的字符串“Друже бобер”。 所以我认为 HtmlUnit 在核心中使用 ASCII 而不是 Unicode 对 url 进行编码。如何禁用 url 编码或如何修复此错误?如果我对此字符串进行编码并设置为 NameValuePair,那么所有百分比字符都将由 HtmlUnit 进行编码。

I am trying to send some HTTP POST parameters to some web server and one of parameters contains cyrillic characters. So the problem is that if I use this code:


wc.getPage(requestSettings);

requestSettings.setHttpMethod(HttpMethod.POST);
requestSettings.setRequestParameters(new ArrayList());

requestSettings.getRequestParameters().add(new NameValuePair("username", "Друже бобер"));
wc.getPage(requestSettings);

Server will recieve the next urlencoded parameter:
enter image description here
And this is wrong decoded string "Друже бобер".
So I think that HtmlUnit encode url in core with using ASCII not Unicode. How to disable url encoding or how to fix this bug? If I'll encode this string and set to NameValuePair so all percent characters will be encoded by HtmlUnit to.

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

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

发布评论

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

评论(1

请帮我爱他 2024-11-12 05:56:57

我认为您需要使用 setCharset 方法设置字符集。

I think you need to set the charset using the setCharset method.

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