欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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);		
	}
 

 

 

 

相关标签: DOS