Java+HtmlUnit—西里尔字母 urlencode 的问题
我正在尝试将一些 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要使用
setCharset
方法设置字符集。I think you need to set the charset using the
setCharset
method.