现在的位置: 首页 > 综合 > 正文

android 客户端获取到乱码处理

2013年10月13日 ⁄ 综合 ⁄ 共 220字 ⁄ 字号 评论关闭
package com.shoujifeng.win.wincomm.http;
下的HttpPlatform文件
String respondEntityString = EntityUtils.toString(httpResponse.getEntity());
改为如下:
String respondEntityString =  EntityUtils.toString(httpResponse.getEntity(), HTTP.UTF_8); 

抱歉!评论已关闭.