如何通过JButton的操作将TextField值形成一个JFrame到类

时间:2018-10-18 03:00:37

标签: java swing jframe

我想在单击按钮后将框架的文本字段数据保存到同一包的类中的局部变量中。我不知道该怎么做。

类名称:-数据。 框架名称:-smtp_settings。

I want to store UserId and Password in a String variable in a class data by action of the button Save. This is the image.

要存储的数据应使用什么编码?

请帮助我。

1 个答案:

答案 0 :(得分:0)

也许是这样?为您添加一个监听器按钮(保存)。

来自Action Listener

的更多信息
SAVE.addActionListener(new ActionListener(){
     public void actionPerformed(ActionEvent e){
         //After click SAVE-button, userID and password are your text fields

         //getting text
         String user_id = userID.getText();
         String psw = password.getText();
         // ... 
     }
});

更多细节会有所帮助。