byte[] 和String之间的转换
程序员文章站
2022-05-08 19:22:12
...
它们 两个方法是相互对应的
1 String to byte[] 和 byte[] to String
public static void All(String source) throws IOException {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(bos);
dos.writeUTF(source);
//转换成 为 byte 数组
byte[] sourceByte=bos.toByteArray();
ByteArrayInputStream bis = new ByteArrayInputStream(sourceByte);
DataInputStream dis = new DataInputStream(bis);
//转换成字符串
String result=dis.readUTF();
System.out.println(result);
}
上一篇: yum install ivy