Search code examples
javaswingjcheckbox

How to check that a JCheckBox is checked?


How can I check if a JCheckBox is checked?


Solution

  • Use the isSelected method.

    You can also use an ItemListener so you'll be notified when it's checked or unchecked.