I have coded the following FileWriter:
try {
    FileWriter writer = new FileWriter(new File("file.txt"), false);
    String sizeX = jTextField1.getText();
    String sizeY = jTextField2.getText();
    writer.write(sizeX);
    writer.write(sizeY);
    writer.flush();
    writer.close();
} catch (IOException ex) {}
Now I want to insert a new line, just like you would do it with \n normally, but it doesn't seem to work.
What can be done to solve this?
Thank you.
 
     
     
     
     
     
     
     
     
     
    