So, first off, this is homework, albeit not mine. It's my brother-in-law's. He asked me for help since I do computers, but I only work in C++. He's reading in keyboard input into a file using System.in until he gets an EOF. Afterwards, he creates an instance of Scanner and calls nextLine on the instance to try to get a filename and gets a NoSuchElementException. According to Javadoc, that means there's no input to be received, which seems like an odd thing to get back when using System.in and typing on the keyboard. My suspicion is that the EOF character is somehow not getting consumed. His code is due at midnight tonight and he's got everything else done (I advised him to use a dummy filename and to come back to the problem).
Here is his code:
import java.util.*;
import java.io.*;
public class FileTest
{
public static void main(String[] args)
{
createFile();
readFile();
}
public static void createFile()
{
//Variables
InputStream istream;
PrintStream ostream;
istream = System.in;
ostream = System.out;
Scanner keyboard = new Scanner(System.in);
int lastEntry = 0;
final int EOF = -1;
//Asks user for filename.
try
{
String fileName;
System.out.println("Please enter the filename of the file you want to open: ");
fileName = keyboard.next();
//Creates specified file.
File currentFile = new File(fileName);
//Checks if file already exists.
while(currentFile.exists())
{
System.out.println(fileName + " already exists");
System.out.println("Error: To prevent tis file from being overwritten please enter another file name");
fileName = keyboard.nextLine();
}
//Asks user for information they want stored in file.
try
{
ostream = new PrintStream(fileName);
System.out.println("Please enter what you would like to put in the file and press Ctrl+Z when finished: ");
//Writes information to file.
try
{
while((lastEntry = istream.read()) != EOF)
ostream.write(lastEntry);
}
catch(Exception e)
{
System.out.println("Error: " +e.getMessage());
}
}
catch(Exception f)
{
System.out.println("Error: " +e.getMessage());
}
}
finally
{
}
}
public static void readFile()
{
InputStream input;
PrintStream output;
output = System.out;
int lastEntry = 0;
final int EOF = -1;
Scanner keyboard2 = new Scanner(System.in);
//Asks user for filename.
String newFile;
System.out.println("Please enter the filename of the file you want to open: ");
newFile = keyboard2.next();
}
}
He's getting the NoSuchElementException error on the newFile = keyboard2.next() line. I've browsed my way through a bunch of examples and found people posting about having this problem, but I've yet to find a solution, so I figured I'd put my (dubious) reputation here on the line for him. Anyone know how he can get this to work?