I have this code
public User createnewproflie() throws IOException
{
FileWriter fwriter = new FileWriter("users.txt",true); //creates new obj that permits to append text to existing file
PrintWriter userfile = new PrintWriter(fwriter); //creates new obj that prints appending to file as the arg of the obj is a pointer(?) to the obj that permits to append
String filename= "users.txt";
Scanner userFile = new Scanner(filename); //creates new obj that reads from file
User usr=new User(); //creates new user istance
String usrname = JOptionPane.showInputDialog("Please enter user name: "); //acquires usrname
userfile.println("USER: "+usrname+"\nHIGHSCORE: 0\nLASTPLAY: 0"); //writes usrname in file
userfile.flush();
usr.setName(usrname); //gives usr the selected usname
return usr;
}
and it doesn't output on the file... can someone help please? i knew that flush would output all of the buffered text but it doesn't seem to work for some strange reason...
You can use a
String
with aFileWriter
but aScanner(String)
produces values scanned from the specified string (not from aFile
). Pass aFile
to theScanner
constructor (and it's a good idea to pass the sameFile
to yourFileWriter
). And you need toclose()
it before you can read it; maybe with atry-with-resources
Finally, I usually prefer something like
File f = new File(System.getProperty("user.home"), "users.txt");
so that the file is saved in the user home directory.