getBytes(): 使用平台的默认字符集将字符串编码为 byte 序列,并将结果存储到一个新的 byte 数组中。
import .*;
public class getBytesTest {
public static void main(String args[]) {
String Str1 = new String("runoob");
try{
byte[] Str2 = ();
("返回值:" + Str2 );
Str2 = ( "ISO-8859-1" );
("返回值:" + Str2 );
Str2 = ( "UTF-8" );
for (byte b : Str2) {
(b+" ");
}
} catch ( UnsupportedEncodingException e){
("不支持的字符集");
}
}
}
以上程序执行结果为:
返回值:[B@6d06d69c 返回值:[B@7852e922 114 117 110 111 111 98