如何将文件显示到jtable中

时间:2014-07-07 21:05:06

标签: jtable

我有一个Time表文件,我想使用Jtable显示它。此外,我想做一个事件,所以当我点击时间表按钮时,我得到我的时间表?感谢名单

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码制作自己的Jtable: http://docs.oracle.com/javase/tutorial/displayCode.html?code=http://docs.oracle.com/javase/tutorial/uiswing/examples/components/SimpleTableDemoProject/src/components/SimpleTableDemo.java

您可以在代码中更改表列名称:

String[] columnNames = {"First Name", "Last Name", "Sport",
                        "# of Years", "Vegetarian"};

您可以在每列上设置和存储数据:

Object[][] data = {
    {"Kathy", "Smith",
     "Snowboarding", new Integer(5), new Boolean(false)},
    {"John", "Doe",
     "Rowing", new Integer(3), new Boolean(true)},
    {"Sue", "Black",
     "Knitting", new Integer(2), new Boolean(false)},
    {"Jane", "White",
     "Speed reading", new Integer(20), new Boolean(true)},
    {"Joe", "Brown",
     "Pool", new Integer(10), new Boolean(false)}
};

我想知道,为什么你想点击它时得到你的时间表?要编辑列上的数据?