1

这种类型的帖子之前已经处理过,但我遇到了基于我的代码结构的问题。

我只是想在最后一列的所有行中添加一个 JComboBox。代码如下。

//Return Person objects from a method
ArrayList<Person> people = getPersonList();

String[] columnNames {"Name", "Age", "English Speaker?" };

DefaultTableModel model = new DefaultTableModel();
model.setColumnIdentifiers(columnNames);

JTable table = new JTable(model);

//Create JComboBox for last column (English Speaker?)                       
JComboBox<Integer> englishCombo = new JComboBox<>();

int count = 1;

//For loop to add each Person to there rows
//Also add a boolean value to determine check box
for(Person p: people)
{
    boolean english =false;

    if(p.isEnglishSpeaker() == true)
    {
        english = true;
    }
    else
    {
        english = false;
    }
    questionCombo.addItem(count);

    model.addRow(new Object[]{p.getName(), p.getAge(), english);
}

//Get 3rd column (English Speaker)
TableColumn englishColumn = table.getColumnModel().getColumn(2);
//Add JComboBox to English Speaker
englishColumn.setCellEditor(new DefaultCellEditor(englishCombo));

当我运行这段代码时,它只在第三列显示真假,而不是 JcomboBox?谁能找出问题所在?非常感谢

4

1 回答 1

2

您指定了一个自定义编辑器;现在您需要解决渲染器。我看到两种可能性:

  1. JComboBox<String>与所需的true和值一起使用,如此false所示。

    图像1

  2. JCheckBox对类型为 的值使用默认的渲染器和编辑器,如此此处Boolean.class所示。

图2

于 2013-05-05T15:58:39.943 回答