質問を参照してください!abg と回答で mKorBel で。
そして、J2sオートコンプリート コンボ ボックスを使用します。
Answer By mKorBel For My Case のコードには、次のコードで別の問題があり、3 行目を編集すると正常に動作しますが、編集のために 1 行目をクリックすると、1 行目の値が選択した 3 行目に設定されます。
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);
}
}
}
});