Java.lang.String.getBytes() 方法



描述

java.lang.String.getBytes(Charset charset) 方法使用给定的字符集将此字符串编码为一系列字节,并将结果存储到新的字节数组中。

声明

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

public byte[] getBytes(Charset charset)

参数

charset - 这是用于编码字符串的字符集。

返回值

此方法返回生成的字节数组。

异常

示例

以下示例演示了 java.lang.String.getBytes() 方法的使用。

package com.tutorialspoint;

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
java_lang_string.htm
广告