hi
im not very good in english .. XD
im trying to make a simple text editor that can open and save..
i have a problem in my save code
here is the code:
JFileChooser jfc = new JFileChooser();
jfc.showSaveDialog(jMenuItem1);
File f = jfc.getSelectedFile();
try {
FileWriter fr = new FileWriter(f);
BufferedWriter bw = new BufferedWriter(fr);
String line = "";
bw.write(jTextArea1.getText());
bw.flush();
jTextArea1.append(line);
jTextArea1.append("\n");
bw.close();
}catch (Exception e) {
System.err.println(e);
System.exit(1);
}
it can already save
the problem is that when i input:
sample
output
the output is
sampleoutput