Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

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:UserspankajDesktop	est.txt"); 
  
    int i; 
    while ((i=fr.read()) != -1) 
      System.out.print((char) i); 
  } 
 
PREVIOUS NEXT
Tagged: #reading #text #file #java
ADD COMMENT
Topic
Name
8+5 =