java学习总结之⽂件操作--ByteArrayOutputStream的⽤法ByteArrayOutputStream类是在创建它的实例时,程序内部创建⼀个byte型别数组的缓冲区,
然后利⽤ByteArrayOutputStream和ByteArrayInputStream的实例向数组中写⼊或读出byte型数据。
在⽹络传输中我们往往要传输很多变量,我们可以利⽤ByteArrayOutputStream把所有的变量收集到⼀起,然后⼀次性把数据发送出去。
具体⽤法如下:
ByteArrayOutputStream: 可以捕获内存缓冲区的数据,转换成字节数组 (从数组写)
ByteArrayInputStream: 可以将字节数组转化为输⼊流(从数组读)
1public static void main(String[] args) {
2int a = 0;
3int b = 1;
4int c = 2;
5 ByteArrayOutputStream bout = new ByteArrayOutputStream();
6 bout.write(a);
7 bout.write(b);
8 bout.write(c);
9byte[] buff = ByteArray();
10for (int i = 0; i < buff.length; i++)
11 System.out.println(buff[i]);
12 System.out.println("***********************");
13 ByteArrayInputStream bin = new ByteArrayInputStream(buff);
14while ((b = ad()) != -1) {
15 System.out.println(b);
16 }
17 }
如上所⽰,ByteArrayOutputStream把内存中的数据读到字节数组中,⽽ByteArrayInputStream⼜把字节数组中的字节以流的形式读出,实现了对同⼀个字节数组的操作.
综合DataOutputStream&DataInputStream的作⽤和功能,与ByteArrayOutputStream和ByteArrayInputSream使⽤将更⽅便.此时DataOutputStream&DataInputStream封闭了字节流,以适当的形式读出了字节数组中的数据.如下所⽰:
1public static void main(String[] args) throws IOException {
2 ByteArrayOutputStream bout = new ByteArrayOutputStream();
3 DataOutputStream dout = new DataOutputStream(bout);
4 String name = "xxy";
5int age = 84;
6 dout.writeUTF(name);
7 dout.writeInt(age);
8byte[] buff = ByteArray();
9 ByteArrayInputStream bin = new ByteArrayInputStream(buff);
output的反义词10 DataInputStream dis = new DataInputStream(bin);
11 String newName = adUTF();
12int newAge = adInt();
13 System.out.println(newName + ":" + newAge);
14 }
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论