http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html

解决方案 »

  1.   

    TableColumn sportColumn = table.getColumnModel().getColumn(2);JComboBox comboBox = new JComboBox();
    comboBox.addItem("Snowboarding");
    comboBox.addItem("Rowing");
    comboBox.addItem("Chasing toddlers");
    comboBox.addItem("Speed reading");
    comboBox.addItem("Teaching high school");
    comboBox.addItem("None");
    sportColumn.setCellEditor(new DefaultCellEditor(comboBox));
      

  2.   

    to : lionqun(晕JAVA):
        你的方法我试了一下,程序不出错但是comboBox不显示,还需要在其它地方设置吗?