Skip to content
Advertisement

How can I find out which button was clicked?

I’ve got my buttons working right, and I’m a listener to each button like this:

for(int i = 0; i <= 25; ++i) {
    buttons[i] = new Button(Character.toString(letters[i]));
    buttons[i].addActionListener(actionListener);
    panel1.add(buttons[i]);
}

Here as you can see the listener is called, and I want to find out which button I’m clicking. Is there a way to do that?

ActionListener actionListener = new ActionListener() {
    public void actionPerformed(ActionEvent actionEvent) {
        System.out.println(actionEvent.getSource());
    }
};

I need some way to find the button in the array.

Advertisement

Answer

try this

ActionListener actionListener = new ActionListener() {
    public void actionPerformed(ActionEvent actionEvent) {
        System.out.println(actionEvent.getActionCommand());
    }
};
Advertisement