javascriptはIEとfirefoxの中の中国語の互換性の問題です.


firefoxとIEの中国語に対するエンコード処理が一致しない場合、IEは常にISO−859−1で符号化され、firefoxはGB 2312またはUTF 8であるため、以下の方法でIEとFirefoxを互換することができる.
まず文字列を符号化して判断します.ISO-859-1であれば符号化変換します.そうでなければ変換しなくてもいいです.
 
エンコーディングを判断する方法は以下の通りです.
public static String getEncoding(String str) {
       String encode = "GB2312";
       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 "";
   }