0

我正在制作一个简单的程序,它接受用户名和密码并将其保存到文本文件中。但是,在我检查硬盘驱动器之前,该程序运行良好。文本文件在那里但没有文本。

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);
}

}

我知道这可能写得不好,但我是一个初学者,会得到一些帮助。谢谢你

4

1 回答 1

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内存中创建两个实例并仅加载一个。为什么?只需创建一个。

于 2015-11-20T23:24:37.940 回答