So i have the following code:
and in my text file it says:
6
5
6
8
6
2
4
I'm able to read the file from my code below, but I want to use those integers in an array in another class. How do I alter this code so that it doesn't have the main function and just reads the file like normal (like it does now), but also returns the numbers in an array so I can use it in another class? I'm so confused please help.
import java.io.*;
public class inputFile {
public static void main(String[] args) {
try {
//Open file in buffered reader
FileReader fr = new FileReader("input.txt");
BufferedReader br = new BufferedReader(fr);
String line;
//Read in each line from file
try {
line = br.readLine();
//While we have read in a valid line
while (line != null) {
//Try to parse integer from the String line
try {
System.out.println(Integer.parseInt(line));
} catch (NumberFormatException nfe) {
System.err.println("Failed to parse integer from line:" + line);
System.err.println(nfe.getMessage());
System.exit(1);
}
line = br.readLine();
}
} catch (IOException e) {
System.out.println("General file input error occured.");
}
} catch (FileNotFoundException e) {
System.out.println("File called input.txt not in the current directory");
}
}
}