Answers for "how to set a read lines of code frm a file java"

2

number of lines in file java

// Get lines in a file
public int linesInFile(String path) {
	try {
		return (int) Files.lines(Paths.get(path)).count(); // Get lines and convert to integer
	} catch(IOException e) {
		e.printStackTrace(); // Print error if file does not exist.
	}
	return -1; // Return -1, if file does not exist.
}
Posted by: Guest on January-09-2022
8

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 "how to set a read lines of code frm a file java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language