【发布时间】:2015-04-09 14:06:50
【问题描述】:
我已经编辑了代码,你能告诉我如何在文件末尾写下每一行吗?这里写在同一行。你能帮忙吗?
private void okMouseClicked(java.awt.event.MouseEvent evt) {
String pass = name.getText();
if (pass.equals("")){
error.setText("Name of Entity should not be left blank");
//JOptionPane.showMessageDialog(null,"Name of Entity should not be left blank");
}
else{
try{
Formatter outfile = new Formatter(new FileOutputStream("Convert.sql", true));
outfile.format("Create Database IF NOT EXISTS " + pass + ";");
outfile.close();
}
catch(FileNotFoundException fnfe){
System.out.println("Not found");
}
this.dispose();
}
}
【问题讨论】:
-
你要找的词是'overwrite',和SQL无关。 Swing 代码也没有。