我在Swing GUI中有一个小表格,一旦对象更改,我想在类中调用一些自定义增变器,但我只是想不出如何获取该信息并调用增变器。这是相关的代码,我知道这是相对简单的,但我无法弄清楚。

对于更改或失去焦点时参考名称框的内容,应调用.setName(String x)
当更改或失去焦点时,genderbox的内容应调用.setGender(Boolean x)
当改变或失去焦点时Racebox的内容应调用.setRace(int a),其中a是用于构建表单的数组的索引号
classbox的功能与Racebox相同

更新:找到了我需要的一些东西,我需要为物品贴上标签,然后使用getsource和getActioCommand,但是虽然这对大多数方面都适用,但我仍然有一个小问题,Genderbox存储了一个字符串,但我希望它具有一个int值,并且只显示字符串,是否可以使用j组合框单独设置值和显示选项文本?

    JTextField namebox = new JTextField(nala.getName());
    namebox.addFocusListener(new FocusListener() {

    //Create the combo box for gender.
    String[] gender = { "male", "female" };
    JComboBox genderBox = new JComboBox(gender);
    if (nala.getGender()){genderBox.setSelectedIndex(1);}else{genderBox.setSelectedIndex(0);}
    genderBox.addActionListener(this);
    genderBox.setActionCommand("GenderBox");

    //Create the combo box for race.
    String[] cRace = new String[75];
    for (int i=0; i<75; i++){cRace[i] = nala.getRaceName(i);}
    JComboBox raceBox = new JComboBox(cRace);
    raceBox.setSelectedIndex((int)nala.getRace());
    raceBox.addActionListener(this);

    //Create the combo box for class.
    String[] cClass = new String[50];
    for (int i=0; i<50; i++){cClass[i] = nala.getClassName(i);}
    JComboBox classBox = new JComboBox(cClass);
    classBox.setSelectedIndex((int)nala.getRace());
    classBox.addActionListener(this);

    public void actionPerformed(ActionEvent e) {
        if (e.getActionCommand().equals("GenderBox")){
            JComboBox cb = (JComboBox)e.getSource();
            System.out.println(cb.getSelectedItem().toString());
        }
         JLabel label = new JLabel(setStatsInfo());
    }//actionPerformed(ActionEvent e)

最佳答案

当JComboBox中的选择发生更改时,请使用ItemListener

例:

JComboBox combo = new JComboBox();
combo.addItemListener(new ItemListener() {
  @Override
  public void itemStateChanged(ItemEvent arg0) {
  // TODO: Action.
  }
});


您的代码仅显示添加listeners的确可以为您的问题提供任何线索。请发布ActionEvent方法代码以向我们显示问题。

09-25 21:36