我正在尝试自己学习java,并希望创建一个安全的文本编辑器,您必须登录才能访问该文本。但是,动作监听器不适用于任何按钮,我无法弄清楚出了什么问题。
请注意我只制作了两个按钮,因为第一个按钮不起作用。
我的代码如下:
public class storage extends JFrame{
private JTextField text1;
public JTextArea storearea;
public JButton newsave;
public JButton save;
public storage(UserProfile person) { //constructor with name passed in
super("Safe Storage");
setLayout(new FlowLayout());
JTextField text1 = new JTextField("Using program as: " + (person.getName()) );
text1.setEditable(false);
add(text1);
JTextArea storearea = new JTextArea(person.getText());
add(storearea);
JButton newsave = new JButton("Save");
add(newsave);
JButton save = new JButton("Save Changes");
add(save);
thehandler handler = new thehandler();
save.addActionListener(handler);
newsave.addActionListener(handler);
} //end constructor
public class thehandler implements ActionListener { //Handler
public void actionPerformed(ActionEvent event){
if(event.getSource() == save) {
System.out.println("Overwriting text");
}
else if(event.getSource() == newsave) {
System.out.println("Overwriting text new");
}
}
} //end thehandler
} //end class
答案 0 :(得分:6)
您已声明了一个实例变量(为空);
public JButton newsave;
和一个局部变量:
JButton newsave = new JButton("Save");
您不需要局部变量(仅实例变量),因此代码应为:
newsave = new JButton("Save");