当前位置 : 主页 > 网络编程 > PHP >

android php 乱码怎么解决

来源:互联网 收集:自由互联 发布时间:2021-08-10
android php乱码的解决办法:1、填写对应的格式,代码如“EntityUtils.toString(httpResponse.getEntity()),HTTP.UTF_8);”;2、使用流的形式。 本文操作环境:windows7系统、PHP7.1版,DELL G3电脑 android

android php乱码的解决办法:1、填写对应的格式,代码如“EntityUtils.toString(httpResponse.getEntity()),HTTP.UTF_8);”;2、使用流的形式。

本文操作环境:windows7系统、PHP7.1版,DELL G3电脑

android php 乱码怎么解决?

前后端交互,android+php解决乱码问题

第一种:填写对应的格式

result= EntityUtils.toString(httpResponse.getEntity()),HTTP.UTF_8);
result=new String( EntityUtils.toString(httpResponse.getEntity()).getBytes("ISO_8859_1"),HTTP.UTF_8);

第二种:使用流的形式

//通过流获取具体的内容
in = httpResponse.getEntity().getContent();
//创建缓冲区
BufferedReader br = new BufferedReader(new InputStreamReader(in));
sb = new StringBuffer();
String line = null;
while((line = br.readLine())!= null){
   sb.append(line);
}
result=sb.toString();

网友评论