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