我在 GUI 中的复选框有问题。我有 5 个复选框和一个名为“生成报告”的按钮。我想要做的是当我按下“生成报告”时,我想检查哪些复选框被选中,以便我可以使用复选框中选择的信息“生成报告”。我知道如何检查选择了哪些,但是如果在单击“生成报告”之前选中了一个复选框,然后又取消了选择,恐怕程序将不知道它在被选中后是否被取消选择。
这是我的代码:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
public class MonthReportGUI implements ItemListener
{
static Calendar calendar = Calendar.getInstance();
JFrame frame = new JFrame("Month Report");
JPanel mainPanel = new JPanel();
JPanel comboPanel = new JPanel();
JLabel info = new JLabel("Use the check boxes to select the information to include in the month report");
JCheckBox checkBoxOne = new JCheckBox("Number accomplished");
JCheckBox checkBoxTwo = new JCheckBox("Number not accomplished");
JCheckBox checkBoxThree = new JCheckBox("Total Number of Jobs");
JCheckBox checkBoxFour = new JCheckBox("Month Salary");
JCheckBox checkBoxFive = new JCheckBox("Average wage per job");
Boolean boxOneSelected = false;
static String [] monthList = {"January", "February", "March", "April", "May", "June", "July", "August", "September",
"October", "November", "December"};
static String [] createYearList()
{
String [] yearList = new String[89];
String year = (calendar.get(Calendar.YEAR)) + "";
for(int i = 0; i < 88; i++)
yearList[i] = (Integer.parseInt(year) + i) + "";
return(yearList);
}
JLabel monthL = new JLabel("Month:");
JLabel yearL = new JLabel("Year:");
static JComboBox monthCB = new JComboBox(monthList);
static JComboBox yearCB = new JComboBox(createYearList());
JButton generate = new JButton("Generate Report"); // ACTION HAS TO BE ADDED
Boolean oneSelected = false;
Boolean twoSelected = false;
Boolean threeSelected = false;
Boolean fourSelected = false;
Boolean fiveSelected = false;
MonthReportGUI()
{
mainPanel.setLayout(new GridLayout(8,1));
mainPanel.add(info, BorderLayout.CENTER);
mainPanel.add(checkBoxOne, BorderLayout.CENTER);
mainPanel.add(checkBoxTwo, BorderLayout.CENTER);
mainPanel.add(checkBoxThree, BorderLayout.CENTER);
mainPanel.add(checkBoxFour, BorderLayout.CENTER);
mainPanel.add(checkBoxFive, BorderLayout.CENTER);
mainPanel.add(comboPanel);
mainPanel.add(generate, BorderLayout.CENTER);
comboPanel.add(monthL);
comboPanel.add(monthCB);
comboPanel.add(yearL);
comboPanel.add(yearCB);
checkBoxOne.addItemListener(this);
checkBoxTwo.addItemListener(this);
checkBoxThree.addItemListener(this);
checkBoxFour.addItemListener(this);
checkBoxFive.addItemListener(this);
frame.add(mainPanel);
frame.pack();
frame.setVisible(true); //set false
}
public void itemStateChanged(ItemEvent e) //perform action to know which are selected to use for writting report
{
Object source = e.getItemSelectable();
if (source == checkBoxOne)
{
System.out.println(boxOneSelected);
boxOneSelected = true;
System.out.println(boxOneSelected);
}
}
public static void main (String agrs[])
{
MonthReportGUI monthReport = new MonthReportGUI();
}
}
感谢您的时间。