Java.io.InputStreamReader.read() 方法



描述

java.io.InputStreamReader.read(char[] cbuf, int offset, int length) 方法将字符读取到数组的一部分。

声明

以下是java.io.InputStreamReader.read(char[] cbuf, int offset, int length) 方法的声明:

public int read(char[] cbuf, int offset, int length)

参数

  • cbuf - 目标字符缓冲区。

  • offset - 开始存储字符的偏移量。

  • length - 要读取的最大字符数。

返回值

该方法返回读取的字符数,如果到达流的末尾则返回 -1。

异常

IOException - 如果发生 I/O 错误。

示例

以下示例演示了 java.io.InputStreamReader.read(char[] cbuf, int offset, int length) 方法的使用。

package com.tutorialspoint;

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

public class InputStreamReaderDemo 

   public static void main(String[] args) throws IOException {
      InputStreamReader isr = null;
      char[] cbuf = new char[5];
      int i;
      
      try {
         // new input stream reader is created 
         fis = new FileInputStream("C:/test.txt");
         isr = new InputStreamReader(fis);
         
         // reads into the char buffer
         i = isr.read(cbuf, 2, 3);
         
         // prints the number of characters
         System.out.println("Number of characters read: "+i);
         
         // for each character in the character buffer
         for(char c:cbuf) {
         
            // for empty character
            if(((int)c) == 0)
               c = '-';
            
            // prints the characters
            System.out.println(c);
         }
         
      } catch (Exception e) {
         // print error
         e.printStackTrace();
      } finally {
         // closes the stream and releases resources associated
         if(fis!=null)
            fis.close();
         if(isr!=null)
            isr.close();
      }   
   }
}

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

ABCDE

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

Number of characters read: 3
-
-
A
B
C
java_io_inputstreamreader.htm
广告