jquery ajax傳值,get方式後臺中文亂碼

經過jquery ajax傳值,後臺出現中文亂碼,通過一番摸索後發現原來客戶端瀏覽器經過get方式傳遞到項目後臺時,編碼格式是ISO-8859-1,須要咱們在後臺通過轉碼才能正常使用。方法以下:java

str = new String(str.getBytes("ISO-8859-1"), "utf-8");jquery

須要注意的是,若是在本地測試,後臺解析的默認字符編碼是gb2312,則不需轉碼,所以代碼修證爲:ajax

if(!StringUtil.getEncoding(str).equalsIgnoreCase("GB2312")){瀏覽器

str = new String(str.getBytes("ISO-8859-1"), "utf-8");測試

}編碼

StringUtil類以下:spa

package com.hwcampus.common;

public final class StringUtil {
	public static boolean isEmpty(String str) {
		if (str != null && !str.trim().isEmpty()) {// 若是字符串不爲null,去除空格後值不與空字符串相等的話,證實字符串有實質性的內容
			return false;//不爲空
		}
		return true;//爲空
	}

	private StringUtil() {

	}

/**
 * 判斷字符串的編碼類型
 * @param str
 * @return
 * author htc
 */
public static String getEncoding(String str) {      
    String encode = "GB2312";      
    if(isEmpty(str)) return "";
   try {      
       if (str.equals(new String(str.getBytes(encode), encode))) {      
            String s = encode;      
           return s;      
        }      
    } catch (Exception exception) {      
    }      
    encode = "ISO-8859-1";      
   try {      
       if (str.equals(new String(str.getBytes(encode), encode))) {      
            String s1 = encode;      
           return s1;      
        }      
    } catch (Exception exception1) {      
    }      
    encode = "UTF-8";      
   try {      
       if (str.equals(new String(str.getBytes(encode), encode))) {      
            String s2 = encode;      
           return s2;      
        }      
    } catch (Exception exception2) {      
    }      
    encode = "GBK";      
   try {      
       if (str.equals(new String(str.getBytes(encode), encode))) {      
            String s3 = encode;      
           return s3;      
        }      
    } catch (Exception exception3) {      
    }      
   return "";      
}  


}
相關文章
相關標籤/搜索