当前位置:   article > 正文

Java Stream 流对象(实用技巧)_java stream index

java stream index

目录

一、InputStream & OutputStream

1.1、InputStream 和 OutputStream 一般使用

1.2、特殊使用

1.2.1、如何表示文件读取完毕?(DataInputStream)

1.2.2、字符读取/文本数据读取(Scanner)

1.2.3、文件的随机读写(RandomAccessFile)


一、InputStream & OutputStream


1.1、InputStream 和 OutputStream 一般使用

InputStream 有以下几个方法:

  1. int read():读取一个字节的数据,返回 -1 代表已经完全读完了.
  2. int read(byte[] b):最多读取 b.length 字节的数据到 b 中,返回实际读到的数 量;-1 代表以及读完了(这就像是你去端了个盆,去食堂让阿姨给打饭,那么阿姨肯定是按照她这饭的多少,能给你打满,就尽量给你打满),这也是实际比较常用的方法.
  3. int read(byte[] b, int off, int len):最多读取 len - off 字节的数据到 b 中,放在从 off 开始,返回实际读到的数量;-1 代表以及读完了.
  4. void close():关闭字节流(一般会把 InputStream 写在 try() 中,就不用手动释放了~).

inputStream 只是一个抽象类,要使用还是需要具体的实现类,比如 当客户端和服务器 accept 后,获取流对象具体实现类...... 但是我们最常用的还是文件的读取,也就是 FileInputStream.

OutputStream 有以下几个方法:

  1. void write(int b):将指定的字节写入此输出流.
  2. void write(byte[] b):将 b 这个字符数组中的数据全部写入 os 中.
  3. int write(byte[] b, int off, int len):将 b 这个字符数组中从 off 开始的数据写入 os 中,一共写 len 个
  4. void close():关闭字节流
  5. void flush():我们知道 I/O 的速度是很慢的,所以,大多的 OutputStream 为了减少设备操作的次数,在写数据的时候都会将数据先暂时写入内存的一个指定区域里,直到该区域满了或者其他指定条件时才真正将数据写入设备中,这个区域一般称为缓冲区。但造成一个结果,就是我们写的数据,很可能会遗留一部分在缓冲区中。需要在最后或者合适的位置, 调用 flush(刷新)操作,将数据刷到设备中。

OutputStream 同样只是一个抽象类,要使用还需要具体的实现类。我们现在还是只关心写入文件中, 所以使用 FileOutputStream

Ps:FileOutputStream 有一个构造器是 new FileOutputStream(String path, boolean append),第一个参数是文件路径,第二个参数是是否以追加到末尾的形式写入,这里如果要在文件末尾追加数据,就需要填写 true 即可~

1.2、特殊使用

1.2.1、如何表示文件读取完毕?(DataInputStream)

使用 read() 方法,返回一个 int 值,这个值如果是 -1,表示文件已经全部读取完毕~

但是实际的项目中,还常常使用一种顺水推舟方式表示文件读取完毕~ 如果我们约定数据的格式,是一个 int (表示 payload 的长度 )+ payload,后面也是一样格式的数据,那么这个时候,我们就需要通过 DataInputStream (这个流对象专门用来读取数字和字节流,必须搭配 DataOutputStream 使用)中的 readInt 方法来读取 这个 int,这个方法特殊就在于读取到文件末尾以后,继续读取就会抛出 EOFException 这个异常(以往我们读取到文件末尾都是返回 -1,或者是 null。),因此这里我们就可以 通过 catch 来捕获这个异常,表示读取完成~

Ps:值得注意的是,DataInputStream / DataOutputStream 可以方便进行数字的读写(readInt、writeInt),原生的 InputStream / OutputStream 没有提供数字读写方法,需要我们自己转化.

  1. public LinkedList<Message> loadAllMessageFromQueue(MSGQueue queue) throws IOException {
  2. //1.检查文件是否存在
  3. if(!checkQueueFileExists(queue.getName())) {
  4. throw new IOException("[MessageFileManager] 获取文件中所有有效消息时,发现队列文件不存在!queueName=" + queue.getName());
  5. }
  6. //2.获取队列中所有有效的消息
  7. synchronized (queue) {
  8. LinkedList<Message> messages = new LinkedList<>();
  9. try (InputStream inputStream = new FileInputStream(getQueueDataFilePath(queue.getName()))) {
  10. try (DataInputStream dataInputStream = new DataInputStream(inputStream)) {
  11. int index = 0;
  12. while(true) {
  13. int messageSize = dataInputStream.readInt();
  14. byte[] payload = new byte[messageSize];
  15. int n = dataInputStream.read(payload);
  16. if(n != messageSize) {
  17. throw new IOException("[MessageFileManager] 读取消息格式出错!expectedSize=" + messageSize +
  18. ", actualSize=" + n);
  19. }
  20. //记录 offset
  21. Message message = (Message) BinaryTool.fromBytes(payload);
  22. if(message.getIsValid() == 0x0) {
  23. index += (4 + messageSize);
  24. continue;
  25. }
  26. message.setOffsetBeg(index + 4);
  27. message.setOffsetEnd(index + 4 + messageSize);
  28. messages.add(message);
  29. index += (4 + messageSize);
  30. }
  31. }
  32. } catch (EOFException e) {
  33. System.out.println("[MessageFileManager] 队列文件中有消息获取完成!queueName=" + queue.getName());
  34. }
  35. return messages;
  36. }
  37. }

1.2.2、字符读取/文本数据读取(Scanner)

对字符类型直接使用 InputStream 进行读取是非常麻烦且困难的,所以,我们使用一种我们之前比较熟悉的类来完成该工作,就是 Scanner 类。

Scanner 一般搭配 PrintWrite ,进行文本格式数据的读写,大大省去了 InputStream/OutputStream  还需要将 字节数据 和 文本数据 之间使用 UTF-8 解码转换的操作.

例如一:

  1. // 需要先在项目目录下准备好一个 hello.txt 的文件,里面填充 "你好中国" 的内容
  2. public class Main {
  3.    public static void main(String[] args) throws IOException {
  4.        try (InputStream is = new FileInputStream("hello.txt")) {
  5.           try (Scanner scanner = new Scanner(is, "UTF-8")) {
  6.               while (scanner.hasNext()) {
  7.                   String s = scanner.next();
  8.                   System.out.print(s);
  9.               }
  10.           }
  11.       }
  12.   }
  13. }

例如二: 

  1. public void writeStat(String queueName, Stat stat) {
  2. try (OutputStream outputStream = new FileOutputStream(getQueueStatFilePath(queueName))) {
  3. PrintWriter printWriter = new PrintWriter(outputStream);
  4. printWriter.write(stat.totalCount + "\t" + stat.validCount);
  5. printWriter.flush();
  6. } catch (IOException e) {
  7. throw new RuntimeException(e);
  8. }
  9. }
  10. public Stat readStat(String queueName) {
  11. Stat stat = new Stat();
  12. try (InputStream inputStream = new FileInputStream(getQueueStatFilePath(queueName))) {
  13. Scanner scanner = new Scanner(inputStream);
  14. stat.totalCount = scanner.nextInt();
  15. stat.validCount = scanner.nextInt();
  16. return stat;
  17. } catch (IOException e) {
  18. throw new RuntimeException(e);
  19. }
  20. }

1.2.3、文件的随机读写(RandomAccessFile)

之前使用 DataInputStream / DataOutputStream 都是接收 FileInputStream/FileOutputStream 进行文件的顺序读写(要么是从头读到尾,要么是在尾部追加写入......),RandomAccessFile 类就特别在可以任意指定位置进行 读/写 操作!

这里涉及到光标的概念,实际上就是你写文件的时候,你写到哪个位置,哪个位置就会有一个光标一闪一闪~

在 RandomAccessFile 中,可以使用 seek() 方法指定光标的位置(单位是字节),例如你要对一个文件中的某一段内存进行逻辑删除(没有实际删除,只是先读出来标记为无效,然后在写回文件,回收站就差不多是这个逻辑).

  1. public void deleteMessage(MSGQueue queue, Message message) throws IOException {
  2. //1.检查队列相关文件是否存在
  3. if(!checkQueueFileExists(queue.getName())) {
  4. throw new IOException("[FileDataCenter] 删除消息时,发现队列相关文件不存在!queueName=" + queue.getName());
  5. }
  6. synchronized (message) {
  7. //2.将要删除的消息文件读出来
  8. try (RandomAccessFile randomAccessFile = new RandomAccessFile(getQueueDataFilePath(queue.getName()), "rw")) {
  9. randomAccessFile.seek(message.getOffsetBeg() - 4);
  10. int payloadSize = randomAccessFile.readInt();
  11. byte[] payload = new byte[payloadSize];
  12. int n = randomAccessFile.read(payload);
  13. if(n != payloadSize) {
  14. throw new IOException("[FileDataCenter] 读取文件格式出错!path=" + getQueueDataFilePath(queue.getName()));
  15. }
  16. //3.将待删除的消息标记为无效(isValid = 0x0)
  17. Message toDeleteMessage = (Message) BinaryTool.fromBytes(payload);
  18. toDeleteMessage.setIsValid((byte) 0x0);
  19. //4.将消息写入文件
  20. randomAccessFile.seek(message.getOffsetBeg());
  21. randomAccessFile.write(BinaryTool.toBytes(toDeleteMessage));
  22. }
  23. //5.更新统计文件
  24. Stat stat = readStat(queue.getName());
  25. stat.validCount -= 1;
  26. writeStat(queue.getName(), stat);
  27. }
  28. }

Ps:

RandomAccessFile 的有两种构造器(实际上是一种),RandomAccessFile(String name, String mode)等价于RandomAccessFile(new File(name), String mode)

mode 这个参数表示 访问模式~
➢ "r":以只读方式打开指定文件。如果试图对该RandomAccessFile执行写入方法,都将抛出IOException异常。
➢ "rw":以读、写方式打开指定文件。如果该文件尚不存在,则尝试创建该文件。
➢ "rws":以读、写方式打开指定文件。相对于"rw"模式,还要求对文件的内容或元数据的每个更新都同步写入到底层存储设备。
➢ "rwd":以读、写方式打开指定文件。相对于"rw"模式,还要求对文件内容的每个更新都同步写入到底层存储设备。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/537125
推荐阅读
相关标签
  

闽ICP备14008679号