如何在jTable

时间:2015-06-30 13:12:09

标签: jframe netbeans-8

我使用jFrame完成了我的框架。它上面有一个jTable,有6列和15行。我想将我的表保存在文件或文本上。我希望在点击时将它们保存在相同的列和相同的行中在负载。我怎么能这样做?

提前感谢。

jTable1.setModel(new javax.swing.table.DefaultTableModel(
        new Object [][] {
            {null, null, null, null, null, null, null},
            {null, null, null, null, null, null, null},
            {null, null, null, null, null, null, null},
            {null, null, null, null, null, null, null},},
        new String [] {
            "İSİM", "NO", "İZİN NEDENİ", "İZİNE ÇIKIŞ TARİHİ", "İZİN GÜNÜ", "İZİN BİTİŞ TARİHİ", "KALAN izin hakkı"
        }
    ));

0 个答案:

没有答案