以下是完整代码:
public class HelloWorld implements ActionListener{
private static JLabel label;
private static JTextField usernameText;
private static JLabel password;
private static JPasswordField passwordText;
private static JButton login;
private static JLabel success;
private static JButton Reset;
@Override
public void actionPerformed(ActionEvent e) {
String user = usernameText.getText();
String password = passwordText.getText();
System.out.println(user + "," + password);
String command = e.getActionCommand();
if(command.equals("Reset")){
System.out.print("Hello");
我有 String command = e.getActionCommand();
在我的 public void actionPerformed(ActionEvent e) {
以上在我的公共静态主要我有
reset = new JButton("reset");
reset.setBounds(85,170,100,25);
panel.add(reset);
所有的“我的”按钮、文本字段和标签都是在这里创建的。我也有
if(command.equals("reset")){
在我的 @Override
但是当我点击重置按钮时什么也没发生。
暂无答案!
目前还没有任何答案,快来回答吧!