我正在创建一个简单的程序,它接受用户名和密码并将其保存到文本文件中。但是,程序工作正常,直到我检查硬盘驱动器。文本文件是没有文本的。
public class Main {
public static void main(String args[]){
events jack = new events();
events gui = new events();
gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
gui.setTitle("WCPSS");
gui.setSize(1100,400);
gui.setVisible(true);
gui.setLocationRelativeTo(null);
BufferedWriter bw = null;
try {
//Specify the file name and path here
File file = new File("E:/myfile.txt");
/* This logic will make sure that the file
* gets created if it is not present at the
* specified location*/
if (!file.exists()) {
file.createNewFile();
}
FileWriter fw = new FileWriter(file);
bw = new BufferedWriter(fw);
bw.write(jack.username);
System.out.println("File written Successfully");
} catch (IOException ioe) {
ioe.printStackTrace();
}
finally
{
try{
if(bw!=null)
bw.close();
}catch(Exception ex){
System.out.println("Error in closing the BufferedWriter"+ex);
}
}
}
}
public class events extends JFrame {
public String username = ("");
public String password = ("");
private JLabel label;
private JButton button;
private JTextField userin = new JTextField(10);
private JTextField userpass = new JTextField(10);
public events() {
setLayout(new FlowLayout());
button = new JButton("Submit");
button.setBounds(5, 435, 50, 123);
add(button);
label = new JLabel(
"Please enter your username and password : ");
add(label);
add(userin);
add(userpass);
button.addActionListener((e) -> {
sumbitAction();
});
}
private void sumbitAction() {
username = userin.getText();
password = userpass.getText();
System.out.println(username);
System.out.println(password);
}
}
我知道这可能写得不好,但我是初学者,并会提供一些帮助。谢谢
答案 0 :(得分:2)
写入文件的部分应该有效。问题是它在加载JFrame
后立即运行。
您应该将代码移动到按ActionListener
时执行的JButton
处理程序:
private void sumbitAction() {
username = userin.getText();
password = userpass.getText();
System.out.println(username);
System.out.println(password);
// do the writing here
}
您还在内存中创建JFrame
的两个实例,只加载一个。为什么?只创建一个。