当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.String.getBytes()用法及代码示例



描述

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

声明

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

public byte[] getBytes(Charset charset)

参数

charset─ 这是用于对字符串进行编码的字符集。

返回值

此方法返回结果字节数组。

异常

NA

示例

下面的例子展示了 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.getBytes() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。