1. 程式人生 > >Java採用HttpURLConnection請求呼叫服務時中文亂碼問題

Java採用HttpURLConnection請求呼叫服務時中文亂碼問題

歡迎使用Markdown編輯器寫部落格

public class HN_cer {
     /**
     * 向指定URL傳送GET方法的請求
     * 
     * @param url
     *            傳送請求的URL
     * @param param
     *            請求引數,請求引數應該是 name1=value1&name2=value2 的形式。
     * @return URL 所代表遠端資源的響應結果
     */
    private static String sendGet(String url, String param) {
        String result = ""
; BufferedReader in = null; try { String urlNameString = url + "?" + param; URL realUrl = new URL(urlNameString); // 開啟和URL之間的連線 URLConnection connection = realUrl.openConnection(); // 設定通用的請求屬性 connection.setRequestProperty("accept"
, "*/*"); connection.setRequestProperty("connection", "Keep-Alive"); connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 建立實際的連線 connection.connect(); // 獲取所有響應頭欄位 Map<String, List<String>> map = connection.getHeaderFields(); // 遍歷所有的響應頭欄位
for (String key : map.keySet()) { System.out.println(key + "--->" + map.get(key)); } // 定義 BufferedReader輸入流來讀取URL的響應 in = new BufferedReader(new InputStreamReader( connection.getInputStream())); String line; while ((line = in.readLine()) != null) { result += line; } } catch (Exception e) { System.out.println("傳送GET請求出現異常!" + e); e.printStackTrace(); } // 使用finally塊來關閉輸入流 finally { try { if (in != null) { in.close(); } } catch (Exception e2) { e2.printStackTrace(); } } return result; } /** * 向指定 URL 傳送POST方法的請求 * * @param url * 傳送請求的 URL * @param string * 請求引數,請求引數應該是 name1=value1&name2=value2 的形式。 * @return 所代表遠端資源的響應結果 */ private static String sendPost(String url, String string) { PrintWriter out = null; BufferedReader in = null; String result = ""; try { URL realUrl = new URL(url); // 開啟和URL之間的連線 URLConnection conn = realUrl.openConnection(); // 設定通用的請求屬性 conn.setRequestProperty("accept", "*/*"); conn.setRequestProperty("connection", "Keep-Alive"); conn.setRequestProperty("user-agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 傳送POST請求必須設定如下兩行 conn.setRequestProperty("Charset", "UTF-8"); conn.setDoOutput(true); conn.setDoInput(true); conn.setConnectTimeout(8000); // 獲取URLConnection物件對應的輸出流 out = new PrintWriter(conn.getOutputStream()); // 傳送請求引數 out.print(string); // flush輸出流的緩衝 out.flush(); // 定義BufferedReader輸入流來讀取URL的響應 in = new BufferedReader( new InputStreamReader(conn.getInputStream(),"utf-8")); String line; while ((line = in.readLine()) != null) { result += line; } } catch (Exception e) { System.out.println("傳送 POST 請求出現異常!"+e); e.printStackTrace(); } //使用finally塊來關閉輸出流、輸入流 finally{ try{ if(out!=null){ out.close(); } if(in!=null){ in.close(); } } catch(IOException ex){ ex.printStackTrace(); } } return result; } public static void main(String[] args) throws Exception { //main方法呼叫 } }

上述程式碼在main方法中呼叫post請求時,不會出現亂碼問題。但是在一個web工程中,呼叫時會出現中文亂碼問題。把傳入的String通過多種方法進行編碼處理,發現都無法解決問題。處理方式如下:

  String string=new String("亂碼".getBytes("GBK"),"UTF-8");
 out = new PrintWriter(conn.getOutputStream());

改為:

out = new PrintWriter(new OutputStreamWriter(conn.getOutputStream(),"utf-8"));

問題解決!

看了我上篇部落格的,使用了對應的方法可能發現,響應值中的中文可能也會出現亂碼
那麼需要把這行程式碼進行處理,如下:

in = new BufferedReader(
                    new InputStreamReader(conn.getInputStream()));

改為:

in = new BufferedReader(
                    new InputStreamReader(conn.getInputStream(),"utf-8"));

總結,第一處修改的編碼問題是呼叫服務時,服務端接受到的資料的編碼格式;第二處修改時,客戶端獲取資料的進行解析的編碼設定。