这篇教程Java getBytes() 方法写得很实用,希望能帮到您。 getBytes() 方法有两种形式: 语法public byte[] getBytes(String charsetName) throws UnsupportedEncodingException或public byte[] getBytes() 参数返回值返回 byte 数组。 实例 import java.io.*; public class Test { public static void main(String args[]) { String Str1 = new String("codercto"); try{ byte[] Str2 = Str1.getBytes(); System.out.println("返回值:" + Str2 ); Str2 = Str1.getBytes( "UTF-8" ); System.out.println("返回值:" + Str2 ); Str2 = Str1.getBytes( "ISO-8859-1" ); System.out.println("返回值:" + Str2 ); } catch ( UnsupportedEncodingException e){ System.out.println("不支持的字符集"); } }} 以上程序执行结果为: 返回值:[B@7852e922返回值:[B@4e25154f返回值:[B@70dea4e Java equalsIgnoreCase() 方法 Java getChars() 方法 |