程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2ME >> 徹底解決J2ME中的中文問題

徹底解決J2ME中的中文問題

編輯:J2ME

在J2ME程序設計過程中,在存儲記錄集、網絡傳輸數據、以及讀取資源文件中的數據時,都可能存在中文問題。

      中文問題的本質是保存、傳輸中文時使用的字符編碼和讀取、獲得中文時的字符編碼不同。在J2ME中所有的手機都支持UTF-8格式的字符集。        在使用數據的時候,一般出現中文問題是在將字符串和字節數組轉換的時候產生,下面是編碼中文產生亂碼的轉換方法:

 

       import Java.io.*;

 

public class Test{

 

      

 

       /**

 

        * 將字節數組轉換為字符串

 

        * @param bytes 需要轉換的字節數組

 

        * @return 轉換後的字符串

 

        */

 

        public static String byte2String(byte[] bytes){

 

             try{

 

                    ByteArrayInputStream bais = new ByteArrayInputStream(bytes);

 

                    DataInputStream dis = new DataInputStream(bais);

 

                   

 

                    String s = dis.readUTF();

 

                   

 

                    //關閉流

 

                    dis.close();

 

                    bais.close();

 

                   

 

                    return s;

 

                   

 

             }catch(Exception e){

 

                    return null;

 

             }

 

        }

 

        

 

        /**

 

         * 將字符串轉換為字節數組

 

         * @param s 需要轉換的字符串

 

         * @return 轉換後生成的字節數組

 

         */

 

        public static byte[] string2Byte(String s){

 

             try{

 

                    ByteArrayOutputStream baos = new ByteArrayOutputStream();

 

                    DataOutputStream bos = new DataOutputStream(baos);

 

                   

 

                    bos.writeUTF(s);

 

                   

 

                    byte[] bytes = baos.toByteArray();

 

                   

 

                    //關閉流

 

                    bos.close();

 

                    baos.close();

 

                   

 

                    return bytes;              

 

             }catch(Exception e){

 

                    return null;

 

             }

 

        }

 

}在J2ME程序設計過程中,在存儲記錄集、網絡傳輸數據、以及讀取資源文件中的數據時,都可能存在中文問題。

       中文問題的本質是保存、傳輸中文時使用的字符編碼和讀取、獲得中文時的字符編碼不同。在J2ME中所有的手機都支持UTF-8格式的字符集。

       在使用數據的時候,一般出現中文問題是在將字符串和字節數組轉換的時候產生,下面是編碼中文產生亂碼的轉換方法:

 

       import Java.io.*;

public class Test{

      

       /**

        * 將字節數組轉換為字符串

        * @param bytes 需要轉換的字節數組

        * @return 轉換後的字符串

        */

        public static String byte2String(byte[] bytes){

             try{

                    ByteArrayInputStream bais = new ByteArrayInputStream(bytes);

                    DataInputStream dis = new DataInputStream(bais);

                   

                    String s = dis.readUTF();

                   

                    //關閉流

                    dis.close();

                    bais.close();

                   

                    return s;

                   

             }catch(Exception e){

                    return null;

             }

        }

        

        /**

         * 將字符串轉換為字節數組

         * @param s 需要轉換的字符串

         * @return 轉換後生成的字節數組

         */

        public static byte[] string2Byte(String s){

             try{

                    ByteArrayOutputStream baos = new ByteArrayOutputStream();

                    DataOutputStream bos = new DataOutputStream(baos);

                   

                    bos.writeUTF(s);

                   

                    byte[] bytes = baos.toByteArray();

                   

                    //關閉流

                    bos.close();

                    baos.close();

                   

                    return bytes;              

             }catch(Exception e){

                    return null;

             }

        }

}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved