一種方法是重寫getCellEditor()方法以返回適當的編輯器。這裏是一個例子,讓你開始:
import java.awt.*;
import java.awt.event.*;
import java.util.List;
import java.util.ArrayList;
import javax.swing.*;
import javax.swing.table.*;
public class TableComboBoxByRow extends JFrame
{
List<TableCellEditor> editors = new ArrayList<TableCellEditor>(3);
public TableComboBoxByRow()
{
// Create the editors to be used for each row
String[] items1 = { "Red", "Blue", "Green" };
JComboBox comboBox1 = new JComboBox(items1);
DefaultCellEditor dce1 = new DefaultCellEditor(comboBox1);
editors.add(dce1);
String[] items2 = { "Circle", "Square", "Triangle" };
JComboBox comboBox2 = new JComboBox(items2);
DefaultCellEditor dce2 = new DefaultCellEditor(comboBox2);
editors.add(dce2);
String[] items3 = { "Apple", "Orange", "Banana" };
JComboBox comboBox3 = new JComboBox(items3);
DefaultCellEditor dce3 = new DefaultCellEditor(comboBox3);
editors.add(dce3);
// Create the table with default data
Object[][] data =
{
{"Color", "Red"},
{"Shape", "Square"},
{"Fruit", "Banana"},
{"Plain", "Text"}
};
String[] columnNames = {"Type","Value"};
DefaultTableModel model = new DefaultTableModel(data, columnNames);
JTable table = new JTable(model)
{
// Determine editor to be used by row
public TableCellEditor getCellEditor(int row, int column)
{
int modelColumn = convertColumnIndexToModel(column);
if (modelColumn == 1 && row < 3)
return editors.get(row);
else
return super.getCellEditor(row, column);
}
};
System.out.println(table.getCellEditor());
JScrollPane scrollPane = new JScrollPane(table);
getContentPane().add(scrollPane);
}
public static void main(String[] args)
{
TableComboBoxByRow frame = new TableComboBoxByRow();
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
編輯:代碼更新爲使用垃圾建議。
謝謝 我一直在分析所有這些例子中你張貼和其他人,在互聯網上..但他們不適合。 我只需要在JTable的特定位置創建一個JComboBox,比如data [1] [5]。 該框已經創建好了,我只需要將它鏈接到那個地方。 在這些例子中,我看到他們獲得了一個完整的列,並從中創建了一個JComboBox,並且我看不到他們如何引用表中的特定位置,例如row-2,column-5等。 。 謝謝 – 2010-07-15 14:26:03