Java.io.FileInputStream.read() 方法



描述

java.io.FileInputStream.read(byte[] b, int off, int len) 方法最多读取 len 字节的数据,从该输入流读取到字节数组中,从目标数组 b 中的偏移量 off 开始。

声明

以下是 java.io.FileInputStream.read(byte[] b, int off, int len) 方法的声明:

public int read(byte[] b, int off, int len)

参数

  • b − 读取数据的字节数组。

  • off − 目标数组 b 中的起始偏移量。

  • len − 要读取的最大字节数。

返回值

该方法返回读取到缓冲区中的总字节数。

异常

  • IOException − 如果发生 I/O 错误。

  • NullPointerException − 如果 b 为 null。

  • IndexOutOfBoundsException − 如果 len 或 off 为负数,或者 b.length-off 大于 b.length。

示例

以下示例演示了 java.io.FileInputStream.read(byte[] b, int off, int len) 方法的用法。

package com.tutorialspoint;

import java.io.IOException;
import java.io.FileInputStream;

public class FileInputStreamDemo {
   public static void main(String[] args) throws IOException {
      FileInputStream fis = null;
      int i = 0;
      char c;
      byte[] bs = new byte[4];
      
      try {
         // create new file input stream
         fis = new FileInputStream("C://test.txt");
         
         // read bytes to the buffer
         i = fis.read(bs, 2, 1);
         
         // prints
         System.out.println("Number of bytes read: "+i);
         System.out.print("Bytes read: ");
         
         // for each byte in buffer
         for(byte b:bs) {
         
            // converts byte to character
            c = (char)b;
            if(b == 0)
               c = '-';
            
            // print
            System.out.print(c);
         } 
         
      } catch(Exception ex) {
         // if any error occurs
         ex.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(fis!=null)
            fis.close();
      }
   }
}

假设我们有一个文本文件 c:/test.txt,其内容如下。此文件将用作我们示例程序的输入:

ABCDEF

让我们编译并运行上述程序,这将产生以下结果:

Number of bytes read: 1
Bytes read: --A-
java_io_fileinputstream.htm
广告