let's say I have a text file I'm inputing text from...
File file = new File("example.txt");
Scanner inputFile = new Scanner(file);
if I want to reference the next line of text I would do
inputfile.nextLine();
Let's say I want to reference that same line of text again. Is there like a "currentLine()" method? What else could I do?
In general, let's say I want to open the file and refer to the 3rd line of text or the 150th line or whatever, how do I get the Scanner to read that specific line?