Answers for "If you want to read a text file line by line, you will use : java*"

7

reading in lines from a file java

private ArrayList<String> readFileLines(String filepath) throws FileNotFoundException, IOException{
  File fp = new File(filepath);
  FileReader fr = new FileReader(fp);
  BufferedReader br = new BufferedReader(fr);

  ArrayList<String> lines = new ArrayList<>();
  String line;
  while((line = br.readLine()) != null) { lines.add(line); }

  fr.close();
  return lines;
}
Posted by: Guest on March-28-2020

Code answers related to "If you want to read a text file line by line, you will use : java*"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language