`
casec12
  • 浏览: 46651 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

String.getBytes()的问题

阅读更多
String.getBytes()的问题
String 的getBytes()方法是得到一个字串的字节数组,这是众所周知的。但特别要注意的是,本方法将返回该操作系统默认的编码格式的字节数组。如果你在使 用这个方法时不考虑到这一点,你会发现在一个平台上运行良好的系统,放到另外一台机器后会产生意想不到的问题。比如下面的程序,

   1. class TestCharset
   2. {
   3.
   4.     public static void main(String[] args)
   5.     {
   6.         new TestCharset().execute();
   7.     }
   8.
   9.     private void execute() {
  10.         String s = "Hello!你好!";
  11.        
  12.         byte[] bytes = s.getBytes();
  13.
  14.         System.out.println("bytes lenght is:" + bytes.length);
  15.
  16.
  17.     }
  18.
  19. }


在一个中文WindowsXP系统下,运行时,结果为:
bytes lenght is:12

但是如果放到了一个英文的UNIX环境下运行:
$ java TestCharset
bytes lenght is:9

如果你的程序依赖于该结果,将在后续操作中引起问题。为什么在一个系统中结果为12,而在另外一个却变成了9了呢?上面已经提到了,该方法是和平 台(编码)相关的。在中文操作系统中,getBytes方法返回的是一个GBK或者GB2312的中文编码的字节数组,其中中文字符,各占两个字节。而在 英文平台中,一般的默认编码是“ISO-8859-1”,每个字符都只取一个字节(而不管是否非拉丁字符)。
Java中的编码支持

Java是支持多国编码的,在Java中,字符都是以Unicode进行存储的,比如,“你”字的Unicode编码是“4f60”,我们可以通过下面的实验代码来验证:

   1. class TestCharset
   2. {
   3.
   4.     public static void main(String[] args)
   5.     {
   6.         char c = '你';
   7.         int i = c;
   8.         System.out.println(c);
   9.         System.out.println(i);
  10.     }
  11.
  12. }


不管你在任何平台上执行,都会有相同的输出:

----------------- output ------------------

20320

20320就是Unicode “4f60”的整数值。其实,你可以反编译上面的类,可以发现在生成的.class文件中字符“你”(或者其它任何中文字串)本身就是以Unicode编码进行存储的:

   1.         char c = 'u4F60';
   2.         ... ...


即使你知道了编码的编码格式,比如:
javac -encoding GBK TestCharset.java
编译后生成的.class文件中仍然是以Unicode格式存储中文字符或字符串的。
使用String.getBytes(String charset)方法

所以,为了避免这种问题,我建议大家都在编码中使用String.getBytes(String charset)方法。下面我们将从字串分别提取ISO-8859-1和GBK两种编码格式的字节数组,看看会有什么结果:

   1. class TestCharset
   2. {
   3.
   4.     public static void main(String[] args)
   5.     {
   6.         new TestCharset().execute();
   7.     }
   8.
   9.     private void execute() {
  10.         String s = "Hello!你好!";
  11.        
  12.         byte[] bytesISO8859 =null;
  13.         byte[] bytesGBK = null;
  14.
  15.         try
  16.         {
  17.             bytesISO8859 = s.getBytes("iso-8859-1");
  18.             bytesGBK = s.getBytes("GBK");
  19.         }
  20.         catch (java.io.UnsupportedEncodingException e)
  21.         {
  22.             e.printStackTrace();
  23.         }
  24.
  25.         System.out.println("--------------   8859 bytes:");
  26.         System.out.println("bytes is:     " + arrayToString(bytesISO8859));
  27.         System.out.println("hex format is:" + encodeHex(bytesISO8859));
  28.         System.out.println();
  29.
  30.         System.out.println("--------------   GBK bytes:");
  31.         System.out.println("bytes is:     " + arrayToString(bytesGBK));
  32.         System.out.println("hex format is:" + encodeHex(bytesGBK));
  33.
  34.     }
  35.
  36.     public static final String encodeHex (byte[] bytes) {
  37.         StringBuffer buff = new StringBuffer(bytes.length * 2);
  38.         String b;
  39.         for (int i=0; i<bytes.length ; i++)
  40.         {
  41.             b = Integer.toHexString(bytes[i]);
  42.             // byte是两个字节的,而上面的Integer.toHexString会把字节扩展为4个字节
  43.             buff.append(b.length() > 2 ? b.substring(6,8) : b);
  44.             buff.append(" ");
  45.         }
  46.         return buff.toString();
  47.     }
  48.
  49.     public static final String arrayToString (byte[] bytes) {
  50.         StringBuffer buff = new StringBuffer();
  51.         for (int i=0; i<bytes.length ; i++)
  52.         {
  53.             buff.append(bytes[i] + " ");
  54.         }
  55.         return buff.toString();
  56.     }
  57.
  58. }

执行上面程序将打印出:

   1. --------------
   2.  8859 bytes:
   3. bytes is:     72 101 108 108 111 33 63 63 63
   4. hex format is:48 65 6c 6c 6f 21 3f 3f 3f
   5.
   6. --------------
   7.  GBK bytes:
   8. bytes is:     72 101 108 108 111 33 -60 -29 -70 -61 -93 -95
   9. hex format is:48 65 6c 6c 6f 21 c4 e3 ba c3 a3 a1


可见,在s中提取的8859-1格式的字节数组长度为9,中文字符都变成了“63”,ASCII码为63的是“?”,一些国外的程序在国内中文环 境下运行时, 经常出现乱码,上面布满了“?”,就是因为编码没有进行正确处理的结果。而提取的GBK编码的字节数组中正确得到了中文字符的GBK编码。字符 “你”“好”“!”的GBK编码分别是:“c4e3”“bac3”“a3a1”。得到了正确的以GBK编码的字节数组,以后需要还原为中文字串时,可以使 用下面方法:
new String(byte[] bytes, String charset)
分享到:
评论

相关推荐

    C#(.net)中按字节数截取字符串最后出现乱码问题的解决

    前言 最近需要用到按字节数截取字符串。在网上找了很多方法。... string msg= Encoding.UTF8.GetString(Encoding.UTF8.GetBytes(strcode)); 例子:2 string strcode=我是小明; byte[] buffer=Encoding.UTF8.Ge

    C#加密JAVA解密

    public static string Encode(string data) { byte[] byKey = System.Text.ASCIIEncoding.ASCII.GetBytes(KEY_64); byte[] byIV = System.Text.ASCIIEncoding.ASCII.GetBytes(IV_64); ...

    Java中的String类getBytes()方法详解与实例

    ### Java中的String类getBytes()方法详解与实例 #### 简介 在Java编程语言中,`String`类是处理文本数据的核心类之一。它表示一个不可变的字符序列,这意味着一旦创建了一个`String`对象,其内容就不能被更改。在...

    C#中char[]与string之间的转换 string 转换成 Char[]

    这里,我们使用Encoding.UTF8.GetBytes方法将string转换成byte[],然后使用Encoding.UTF8.GetString方法将byte[]转换成string。 C#中char[]与string之间的转换可以通过使用ToCharArray()方法、string类的构造函数、...

    C# string byte数组转换解析.pdf

    public static byte[] GetBytes(string hexString, out int discarded) { discarded = 0; string newString = ""; char c; for (int i = 0; i &lt; hexString.Length; i++) { c = hexString[i]; if (IsHexDigit...

    Des加密解密C#源码

    Des加密解密C#源码,很实用 byte[] rgbKey = Encoding.UTF8.GetBytes(encryptKey.Substring(0, 8)); byte[] rgbIV = Encoding.ASCII.GetBytes(kesVector);... return Convert.ToBase64String(mStream.ToArray());

    C#16进制与字符串字节数组之间的转换代码

    byte[] bytes = chs.GetBytes(s); string str = ""; for (int i = 0; i &lt; bytes.Length; i++) { str += string.Format("{0:X}", bytes[i]); // 转换为十六进制 if (fenge && (i != bytes.Length - 1)) { str...

    加密解密类DESEncrypt.cs

    public static string Encrypt(string Text,string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray; inputByteArray=Encoding.Default.GetBytes...

    史上最全的java基础总结大全

    public static void main(String[] args) { //编码解码1:默认编码 String str1 = "你好"; byte[] buf1 = str1.getBytes();//默认解码:Unicode,四个字节 //编码解码2:指定编码 String str2 = "你好"; ...

    c#数据类型转换,BYTE,float,double,char类型间的转换方法.docx

    string strNum = "123"; int num = int.Parse(strNum); ``` 反之,`ToString()`方法可以将数值转换为字符串。 **字符串与字符数组/字节数组之间的转换** `ToCharArray()`方法可以将字符串转换为字符数组,而`...

    C#_MySQL_图片的存储与读取

    需要注意的是,在实际应用中,还需要考虑图片的安全性、效率以及异常处理等问题。此外,对于大量图片的存储,还应该考虑使用更高效的数据存储方案,比如将图片存储在文件系统中,仅将文件路径存储在数据库中等。

    C# char[]与string byte[]与string之间的转换详解

    1、char[]与string之间的转换 //string 转换成 Char[] string str=hello; char[] arr=str.ToCharArray();...bytes = Encoding.UTF8.GetBytes(str); //string 转换成 byte[] (字符串是用哪种编码生成的byte[]

    RandomAccessFile向文件中写入中文

    - 当使用`write(String.getBytes())`时,通过指定正确的编码方式(如`getBytes("GBK")`),可以确保字符正确转换为对应的字节序列。 2. **`RandomAccessFile`与文件系统的交互**: - `RandomAccessFile`类本身...

    C#_string_byte数组转换解析

    public static byte[] GetBytes(string hexString, out int discarded) { discarded = 0; string newString = ""; char c; // remove all none A-F, 0-9, characters for (int i = 0; i &lt; hexString.Length; i+...

    base64转码解密成明文加密成Java密文

    String base64String = "SGVsbG8gd29ybGQh"; // 假设这是Base64编码的字符串 byte[] decodedBytes = Base64.getDecoder().decode(base64String); String plainText = new String(decodedBytes); // 将解码后的...

    java 小程序 课程设计 java

    String(request.getParameter("subject").getBytes("ISO-8859-1")); String str_content=new String(request.getParameter("content").getBytes("ISO-8859-1")); Properties props=new Properties(); props.put(...

    C#加密解密的函数参考

    public static string Encrypt(string targetValue, string key) { if (string.IsNullOrEmpty(targetValue)) { return string.Empty; } var returnValue = new StringBuilder(); var des = new ...

    AES加密工具类

    IvParameterSpec zeroIv = new IvParameterSpec(VIPARA.getBytes()); SecretKeySpec key = new SecretKeySpec(dataPassword.getBytes(), "AES"); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); ...

    string-encrypt.zip_EncryptString_string encrypt

    string hashString = BitConverter.ToString(hashBytes).Replace("-", ""); ``` 在实际应用中,我们通常会结合这些加密技术,如使用RSA加密AES的密钥,再用AES加密大量数据,以提高安全性。此外,还需要注意密钥...

    C# 中实现短信发送的类

    public static int SendSMS(string Number, string Message) { int returnValue = 0; IntPtr smsHandle = new IntPtr(0); // Set address structure byte[] smsatAddressType = BitConverter.GetBytes(SMSAT_...

Global site tag (gtag.js) - Google Analytics