io 流的基本使用
2023年6月5日小于 1 分钟
IO 流的一些基本使用,后续记得完善
程序 通过 ByteArrayInputStream 读取 ByteArray
程序 通过 ByteArrayOutputStream 写入 ByteArray
byte[] bb = new byte[]{49,50,51};
InputStream in = new ByteArrayInputStream(bb);
DataInputStream dis = new DataInputStream(in);