Java 带有 StringEntity 的 HttpPost 具有像 ? 这样的特殊字符,看到 ??` 而不是 ?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/20473848/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-13 02:12:46 来源:igfitidea点击:
HttpPost with StringEntity having special characters like ?, seeing ??` instead of ?
提问by java techie
I need to use special characters for stringentity
as below.
我需要使用特殊字符stringentity
如下。
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpEntity entity = new StringEntity("test?");
httpPost.setEntity(entity);
httpPost.setHeader("Accept-Encoding", "UTF-8");
HttpResponse response = httpClient.execute(httpPost);
BufferedReader reader = new BufferedReader(new InputStreamReader((response.getEntity().getContent())));
while ((reader.readLine()) != null) {
System.out.println (reader.readLine());
}
reader.close();
The output contains test???
instead of test?
in the response.
输出包含test???
而不是test?
在响应中。
采纳答案by Italo Borssatto
Change to:
改成:
HttpEntity entity = new StringEntity("test?", "UTF-8");