1. 程式人生 > >httpclient4 post提交請求亂碼問題解決

httpclient4 post提交請求亂碼問題解決

分享一下我老師大神的人工智慧教程吧。零基礎,通俗易懂!風趣幽默!http://www.captainbed.net/

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               

第一種:

HttpPost post=new HttpPost(url);

StringEntity content=new StringEntity(data, Charset.forName(

"utf-8"));// 設定編碼

content.setContentType("application/json; charset=UTF-8");

content.setContentEncoding("utf-8");

post.setEntity(content);

第二種:

httpPost.setEntity(new UrlEncodedFormEntity(nvps,"utf-8"));//在設定請求資料的時候,指定編碼。

           

給我老師的人工智慧教程打call!http://www.captainbed.net/

這裡寫圖片描述