我正在尝试创建一个JButton,它将使用所选项目的数量回调所选项目列表。
我有一个原始列表显示不同的JRadioButtons,但JRadioButtons命名而不是列出。我看过另一个使用Vector集合的网站我相信使用基本的迭代方法,但我觉得我有点不知所措。
这是我的按钮代码。
// create new ButtonHandler for button event handling
ButtonHandler handler = new ButtonHandler();
submitButton.addActionListener( handler );
} // end Frame constructor
// inner class for submit button event handler
private class ButtonHandler implements ActionListener
{
//handle button event
public void actionPerformed( ActionEvent event )
{
JOptionPane.showMessageDialog(Frame.this, String.format(
"You entered: %s", event.getActionCommand() ) );
我能在这里找到正确的答案,还是离那么远?