1.String中getBytes()方法的作用

String中getBytes()方法是将字符串转换成字节数组的一种方法,它可以将字符串转换为指定的编码格式的字节数组。

2.getBytes()方法的使用

getBytes()方法的使用非常简单,只需要在字符串对象上调用即可,例如:

String str = "Hello World!";
byte[] data = str.getBytes();

上面的代码可以将字符串“Hello World!”转换为一个字节数组。

3.getBytes()方法的重载

除了上面提到的getBytes()方法,String类也提供了两个重载的getBytes()方法,它们可以指定编码格式:

String str = "Hello World!";
byte[] data1 = str.getBytes("UTF-8");
byte[] data2 = str.getBytes("GBK");

上面的代码可以将字符串“Hello World!”转换为指定编码格式的字节数组。