欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android POST数据遇到的UTF-8编码(乱码)问题解决办法

程序员文章站 2023-08-29 21:05:06
今天遇到这样一个bug:客户端post到服务器的一段数据导致服务器端发生未知异常。服务器端确认是编码转换错误。于是截取网络数据包进行分析,发现客户端post的json数据中...

今天遇到这样一个bug:客户端post到服务器的一段数据导致服务器端发生未知异常。服务器端确认是编码转换错误。于是截取网络数据包进行分析,发现客户端post的json数据中包含下面一段(hex形式):

复制代码 代码如下:
... 61 64 20 b7 20 52 69 63 ...

问题就出在这个b7上。查阅unicode代码表后发现,u+00b7是middle dot,它的utf-8表现形式应该是c2 b7,但为何客户端发送的数据中它变成了b7?

由于系统使用了ormlite、gson和async-http几个库,于是逐一排查。最后发现原来是向服务器发送数据时没有指定文字编码,导致async-http(实际是apache common http client)将数据以iso-8559-1格式发送,u+00b7被编码成b7,然后服务器试图使用utf-8解码时发生错误。

出错的代码片段如下:

复制代码 代码如下:

gson gson = new gson();
string json = gson.tojson(data);
stringentity entity = new stringentity(json);
httpclient.post(context, url, entity, "application/json", new texthttpresponsehandler() ... );

第三行new stringentity(json)时没有指定编码导致错误。改正后如下:
复制代码 代码如下:

gson gson = new gson();
string json = gson.tojson(data);
stringentity entity = new stringentity(json, "utf-8");
httpclient.post(context, url, entity, "application/json;charset=utf-8", new texthttpresponsehandler() ... );