String str = "test";// String 转 Bytebyte[] bytes = str.getBytes(StandardCharsets.UTF_8);// Byte 转 StringString strs = new String(bytes);