Answers for "reading a file"

7

python file reading

fin = open("NAME.txt", 'r')
body = fin.read().split("n")
line = fin.readline().strip()
Posted by: Guest on May-06-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language