位置:首頁 > Java技術 > java.lang > java.lang.String.getBytes(Charset charset) 方法實例

java.lang.String.getBytes(Charset charset) 方法實例

java.lang.String.getBytes(Charset charset) 方法將此String解碼使用給定的字符集的字節序列,並將結果存儲到一個新的字節數組。

聲明

以下是java.lang.String.getBytes()方法的聲明

public byte[] getBytes(Charset charset)

參數

  • charset -- 這是字符集被用於對字符串進行編碼。

返回值

此方法返回得到的字節數組。

異常

  • NA

例子

下麵的例子顯示java.lang.String.getBytes()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    try {
       String str1 = "admin";
       System.out.println("string1 = " + str1);
       // copy the contents of the String to a byte array
       byte[] arr = str1.getBytes("ASCII");
     
       String str2 = new String(arr);
       // print the contents of the byte array
       System.out.println("new string = " + str2);
    }
    catch(Exception e) {
       System.out.print(e.toString());
    }
  }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

string1 = admin
new string = admin