- 浏览: 12569 次
- 性别:
- 来自: 深圳
最新评论
-
zz4165456zz:
非常感谢,解决了我的问题。
HttpPost发送JSON数据中文乱码问题。
文章列表
Android移动终端通过 HttpPost发送JSON数据时出现中文乱码问题的解决方案。通常都用UTF-8 编码。
1、客户端 postData为JSON数据JSONObject.
注意点:发送和接收时转码。
public static String httpPostData(String uri, int requestTimeOut, String postData) {
String retStr = "failure";
int tmout = 5;
if (requestTimeOut > 0){
tmout = requestTime ...