FileReader: read(char[] cbuf)

char[] read(char[] cbuf)
read characters from the FileReader and save to cbuf array
 
import java.io.FileReader;

public class Main {
  public static void main(String[] argv) throws Exception {
    FileReader fr = new FileReader("text.txt");
    int count;
    char chrs[] = new char[80];

    do {
      count = fr.read(chrs);
      for (int i = 0; i < count; i++)
        System.out.print(chrs[i]);
    } while (count != -1);

  }
}
  
Home 
  Java Book 
    File Stream  

FileReader:
  1. FileReader
  2. FileReader: read()
  3. FileReader: read(char[] cbuf)