Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to change the text of the JButton when clicked? I have a JButton, the text is a number, what I would like to happen is when the user clicks it, the text in the button will increment. Is that possible? Thanks

share|improve this question
show us what you tried? – ogzd Feb 11 at 13:44
Possible Duplicate: Changing a JButton text when clicked – Siva Charan Feb 11 at 13:49

2 Answers

You can access the clicked button by getSource() method of ActionEvent. Thus you can manipulate the button as much as you want.

Try this:

@Override  
public void actionPerformed(ActionEvent e) {  
    JButton clickedButton = (JButton) e.getSource();
    clickedButton.setText("Anything you want"); 
}  
share|improve this answer

Another way to do it:

JButton button = new JButton("1");
button.addActionListener(new ActionListener() {
  public void actionPerformed(ActionEvent e) {
    int count = Integer.parseInt(button.getLabel());
    button.setLabel((String)count);
  }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.