我正在開發記事本項目,想知道如何保存一個file.txt,我的問題是,我保留文件打開JFileChooser後,選擇本地保存打算,但如果再次保存將再次打開JFileChoose。我想保存。不保存爲。如何使用JFileChooser保存file.txt?
JFileChooser fc = new JFileChooser();
int resp = fc.showSaveDialog(fc);
if (resp == JFileChooser.APPROVE_OPTION) {
PrintStream fileOut = null;
try {
File file = fc.getSelectedFile();
fileOut = new PrintStream(file);
fileOut.print(txtArea.getText());
} catch (FileNotFoundException ex) {
Logger.getLogger(frmNotePad.class.getName()).log(Level.SEVERE, null, ex);
} finally {
fileOut.close();
}