Java getBytes() 方法

getBytes() 方法有两种形式:

  • getBytes(String charsetName): 使用指定的字符集将字符串编码为 byte 序列,并将结果存储到一个新的 byte 数组中。

  • getBytes(): 使用平台的默认字符集将字符串编码为 byte 序列,并将结果存储到一个新的 byte 数组中。

语法

  1. public byte[] getBytes(String charsetName) throws UnsupportedEncodingException
  2. public byte[] getBytes()

参数

  • charsetName — 支持的字符集名称。

返回值

返回 byte 数组。

实例

  1. import java.io.*;
  2. public class Test {
  3. public static void main(String args[]) {
  4. String Str1 = new String("java");
  5. try{
  6. byte[] Str2 = Str1.getBytes();
  7. System.out.println("返回值:" + Str2 );
  8. Str2 = Str1.getBytes( "UTF-8" );
  9. System.out.println("返回值:" + Str2 );
  10. Str2 = Str1.getBytes( "ISO-8859-1" );
  11. System.out.println("返回值:" + Str2 );
  12. } catch ( UnsupportedEncodingException e){
  13. System.out.println("不支持的字符集");
  14. }
  15. }
  16. }

以上程序执行结果为:

  1. 返回值:[B@62b92956
  2. 返回值:[B@6a48ffbc
  3. 返回值:[B@1b7adb4a