android php 亂碼怎麼解決

mpsky發表於2021-09-11

android php亂碼的解決辦法:1、填寫對應的格式,程式碼如“EntityUtils.toString(httpResponse.getEntity()),HTTP.UTF_8);”;2、使用流的形式。

android php 亂碼怎麼解決

本文操作環境: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();

推薦學習:《》

以上就是android php 亂碼怎麼解決的詳細內容,更多請關注php中文網其它相關文章!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1806/viewspace-2827772/,如需轉載,請註明出處,否則將追究法律責任。

相關文章