我有顯示JTable面板的小問題(我猜)。 我有類包含對象數組:不能顯示JTable
public class Item
{
String itemDesc = "";
float price = 0;
private itemType enmItemType;
Object[][] data = {{itemDesc, enmItemType , new Float(price)}};
.
.
.
.
}
這裏是表類包含JTable的:
class Table extends JFrame
{
// Instance attributes used in this example
private JPanel topPanel;
private JTable table;
private JScrollPane scrollPane;
private JButton update_Button;
// Constructor of main frame
public Table()
{
// Set the frame characteristics
setTitle("Add new item");
setSize(300, 200);
setBackground(Color.gray);
// Create a panel to hold all other components
topPanel = new JPanel();
topPanel.setLayout(new BorderLayout());
getContentPane().add(topPanel);
// Create columns names
String columnNames[] = {"Item Description", "Item Type", "Item Price"};
// Create some data
Object dataValues[][] ;
Item itm = new Item();
dataValues = itm.data;
// Create a new table instance
table = new JTable(dataValues, columnNames);
////////////////////////////
JComboBox itemTypeCombobox = new JComboBox();
TableColumn column1 = table.getColumnModel().getColumn(1);
column1.setCellEditor(new DefaultCellEditor(itemTypeCombobox));
////////////////////////////
// Add the table to a scrolling pane
scrollPane = new JScrollPane(table);
topPanel.add(scrollPane, BorderLayout.CENTER);
JButton button = new JButton("Add Item");
topPanel.add(button, BorderLayout.SOUTH);
}
}
主要程序是:
public static void main(String[] args)
{
Menu m = new Menu();
m.chooseMenu();
// Create an instance of the test application
Table mainFrame = new Table();
mainFrame.setVisible(true);
}
我沒有收到任何錯誤/警告,但仍然沒有看到任何表格。 有人可以指導我導致問題的原因是什麼?
謝謝。
@Edan:請嘗試改進代碼的格式。使用'代碼示例(Ctrl + K)'代替'Blockquote(Ctrl + q)'。 – 2010-04-30 13:12:56
我會在下一次... – firestruq 2010-04-30 13:18:51
我想這一次,因爲我有編譯錯誤。你仍然可以編輯代碼.. – bragboy 2010-04-30 13:21:25