Answers for "READ JAVA"

1

reading from a text file in java

public static void main(String[] args) throws Exception 
  { 
    // pass the path to the file as a parameter 
    FileReader fr = new FileReader("C:\\Users\\pankaj\\Desktop\\test.txt"); 
  
    int i; 
    while ((i=fr.read()) != -1) 
      System.out.print((char) i); 
  }
Posted by: Guest on October-12-2020
0

read java reader

Attempts to read characters into the specified character buffer. 
  The buffer is used as a repository of characters as-is: the only changes
  made are the results of a put operation. No flipping or rewinding of the
  buffer is performed.
Posted by: Guest on September-27-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language