0

我正在尝试了解有关 actionListener 的更多信息。

如果单击“保存”按钮,我尝试打印出消息“测试操作”。无论如何,我完全不明白。

这是我的代码,希望任何人都可以帮助我。提前致谢。

import java.awt.Color;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.*;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.SwingConstants;

public class applet extends JApplet implements ActionListener {

    private static final long serialVersionUID = -5561312464056465383L;
    private JTextField txtNameEingeben;
    private JTextField txtPwEingeben;

    public applet() {
        getContentPane().setLayout(new GridLayout(1, 0, 0, 0));
        JPanel panel = new JPanel();
        panel.setBackground(Color.DARK_GRAY);
        getContentPane().add(panel);
        panel.setLayout(null);
        JLabel lblANewLabel = new JLabel("Name");
        lblANewLabel.setHorizontalAlignment(SwingConstants.LEFT);
        lblANewLabel.setFont(new Font("Lucida Grande", Font.PLAIN, 20));
        lblANewLabel.setBounds(33, 57, 117, 37);
        lblANewLabel.setForeground(Color.WHITE);
        panel.add(lblANewLabel);
        //TEXTFELD NAME
        txtNameEingeben = new JTextField();
        txtNameEingeben.setText("");
        txtNameEingeben.setBounds(162, 64, 134, 28);
        panel.add(txtNameEingeben);
        txtNameEingeben.setColumns(10);
        //TEXTFELD PASSWORT
        txtPwEingeben = new JTextField();
        txtPwEingeben.setText("");
        txtPwEingeben.setBounds(162, 113, 134, 28);
        panel.add(txtPwEingeben);
        txtPwEingeben.setColumns(10);
        //LABEL ÜBERSCHRIFT
        JLabel lblNamePasswort = new JLabel("Name & Passwort in einem Array     speichern");
        lblNamePasswort.setForeground(Color.WHITE);
        lblNamePasswort.setHorizontalAlignment(SwingConstants.CENTER);
        lblNamePasswort.setBounds(0, 23, 450, 16);
        panel.add(lblNamePasswort);
        JButton btnSave = new JButton("save");
        btnSave.setBounds(308, 251, 117, 29);
        panel.add(btnSave);
        btnSave.addActionListener(new events());    
    }

    public void save(ActionEvent event) {
        System.out.println("Button gedrückt.");
    }

    public void actionPerformed(ActionEvent event) {
        if (event.getSource(btnSave)) {
            System.out.println("Test Action");
        }
    }

    public static void main(String[] args) {
        applet applet1 = new applet();
        applet1.setVisible(true);
    }
}
4

3 回答 3

5
  1. 不要使用保留的 Java 类和方法名称作为项目名称。public class applet extends...应该public class MyApplet extends....

  2. 使用正确的Java 命名约定

  3. 使用JFrame而不是JApplet,创建JFrame为局部变量而不是扩展 JFrame,类似于 forprivate JTextField txtNameEingeben;

  4. 使用LayoutManager而不是AbsoluteLayout (setBounds(...))

  5. 从未声明btnSave.addActionListener(new events());_events()

  6. 你应该使用event.getSource() == btnSave而不是event.getSource(btnSave)

  7. 阅读有关如何编写动作侦听器的 Oracle 教程

于 2013-06-20T15:18:53.537 回答
2

ActionEvent#getSource() 传递负责触发的组件。对于按钮,Swing 将按钮本身作为源。这意味着,您需要检查按钮是否是源。在您的代码中有两种可能性:

  1. 将按钮设置为字段:

    public class applet extends JApplet implements ActionListener {
    
      /**
     * 
     */
      private static final long serialVersionUID = -5561312464056465383L;
      private JTextField txtNameEingeben;
      private JTextField txtPwEingeben;
    
      private JButton btnSave;
    
      /**
       * Create the applet.
       */
      public applet() {
    
        ...
    
        lblNamePasswort.setHorizontalAlignment(SwingConstants.CENTER);
        lblNamePasswort.setBounds(0, 23, 450, 16);
        panel.add(lblNamePasswort);
    
        btnSave = new JButton("save");
        btnSave.setBounds(308, 251, 117, 29);
        panel.add(btnSave);
        btnSave.addActionListener(this);
    
      }
    
      public void actionPerformed(ActionEvent event) {
        if (btnSave.equals(event.getSource())) {
          save();
        }
      }
    
      public void save() {
        System.out.println("Button gedrückt.");
      }
      ...
    

    }

  2. 一个更好的实现方式,就是不让整个applet实现Action监听器,而只是使用内联实现。

          public class applet extends JApplet {
    
            private static final long serialVersionUID = -5561312464056465383L;
            private JTextField txtNameEingeben;
            private JTextField txtPwEingeben;
    
            /**
             * Create the applet.
             */
            public applet() {
              getContentPane().setLayout(new GridLayout(1, 0, 0, 0));
    
              // left out
              ...              
    
              JButton btnSave = new JButton("save");
              btnSave.setBounds(308, 251, 117, 29);
              panel.add(btnSave);
              btnSave.addActionListener(new ActionListener() {
    
                @Override
                public void actionPerformed(ActionEvent e) {
                  save();
                }
              });
    
            }
    
            public void save() {
              System.out.println("Button gedrückt.");
            }
    
            public static void main(String[] args) {
              applet applet1 = new applet();
              applet1.setVisible(true);
            }
          }
    
于 2013-06-20T15:16:29.190 回答
0

你可以替换:

// (Where 'events' seems to come from nowhere)
btnSave.addActionListener(new events()); 

经过 :

btnSave.addActionListener(
    new ActionListener() {
        public void actionPerformed(ActionEvent event)
        {
            //if (event.getSource() == btnSave) { // Usefull only in case 2.
                System.out.println("Test Action");
            //}
        }
});     

您的听众可以是:

  1. 像上面一样(匿名)声明,或者,
  2. 通过实例化你的一个实现的类来创建ActionListener(看这里)。

对于选项 2。当您的嵌入类实现 ActionListener 时,您可以将其作为参数传递:

btnSave.addActionListener(this);


注意:您还应该遵循mKorbel.

于 2013-06-20T15:15:14.370 回答