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.toS
try this
ActionListener actionListener = new ActionListener() { public void actionPerformed(ActionEvent actionEvent) { System.out.println(actionEvent.getActionCommand()); } };