How to select multiple JCheckBoxe into ButtonGroup?
问题 I have three JCheckBox like following: final JCheckBox c1 = new JCheckBox("A"); final JCheckBox c2 = new JCheckBox("B"); final JCheckBox c3 = new JCheckBox("C"); I make a group by ButtonGroup for this checkboxes like following: final ButtonGroup bg = new ButtonGroup(); bg.add(c1); bg.add(c2); bg.add(c3); I have a Button to display selected items into a label like following: String SelectedItem=""; Enumeration<AbstractButton> items= bg.getElements(); while (items.hasMoreElements()) {