若要获取字符串中的字符作为字节数组,请使用getBytes()
方法。
假设我们有以下字符串。
String str = "演示文字!";
将其转换为字节数组。
byte[] arr = str.getBytes();
public class Demo { public static void main(String[] args) { String str = "演示文字!"; //获取为字节数组 byte[] arr = str.getBytes(); //将每个字符显示为Byte值 for(byte res: arr) { System.out.println(res); } } }
输出结果
68 101 109 111 32 84 101 120 116 33