Answers for "how to scan the lines in a file injava"

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
0

how to check the lines in a file java scanner

int count = 0;
while (scanner.hasNextLine()) {
    count++;
    scanner.nextLine();
}
Posted by: Guest on April-01-2020

Code answers related to "how to scan the lines in a file injava"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language