TableColumn tc=this.getColumn(0);// 取到一列JComboBox cbx = new JComboBox(new String[] {"a","b","c"});// 建立下拉列表TableCellEditor tce=new DefaultCellEditor(cbx);// 创建编辑器tc.setCellEditor(tce);// 设置编辑器