android POST資料遇到的UTF-8編碼(亂碼)問題解決辦法_Android

來源:互聯網
上載者:User

今天遇到這樣一個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() ... );

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.