我想在单击按钮后将框架的文本字段数据保存到同一包的类中的局部变量中。我不知道该怎么做。
类名称:-数据。 框架名称:-smtp_settings。
要存储的数据应使用什么编码?
请帮助我。
答案 0 :(得分:0)
也许是这样?为您添加一个监听器按钮(保存)。
的更多信息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();
// ...
}
});
更多细节会有所帮助。