参考问题!由 abg 和由 mKorBel 回答。
并使用 J2s自动完成组合框!
mKorBel 对于我的案例的答案中的代码在以下代码中存在另一个问题,当我编辑第三行时它工作正常,但是当我单击第一行进行编辑时,它将第一行的值设置为选定的第三行。
comboBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
JComboBox comboBox = (JComboBox) e.getSource();
String itemStr= comboBox.getSelectedItem().toString();
int selectedRowLocal= tblDetailInfoParts.getSelectedRow();
if (selectedRowLocal != -1)
{
if ((itemStr != null) && (itemStr.compareTo("") != 0) )
{
tblDetailInfoParts.setValueAt(itemStr, selectedRowLocal, 15);
}
}
}
});