如何在我的jtable中获得超过100行?

时间:2018-03-01 14:37:14

标签: java jtable java-io

如何让Jtable读取超过100行?
我需要知道如何为我的Jtable创建下一个和上一个按钮以从文本文件中获取数据。 我所做的代码只能读取我文件中的前100行。
我用来刷新Jtable的按钮代码是

 try {
        for (int r = 0; r < 100; r++) { //initializing row
            for (int c = 0; c < 4; c++) { //initializing column
                jTable1.setValueAt(null, r, c);
            }
        }

        BufferedReader rdfile = new BufferedReader(new FileReader("items.txt"));

        String[] item = new String[100];
        String[] temp;

        int x = 0;  //read item
        while ((item[x] = rdfile.readLine()) != null) {
            temp = item[x].split("\t");
            jTable1.setValueAt((1000 + x + 1), x, 0);
            for (int j = 1; j < 4; j++) {
                jTable1.setValueAt(temp[j - 1], x, j);
            }

            x++;
        }
        rdfile.close();

    } catch (IOException e) {
    }

我想做一个&#34; next&#34;按钮,用于查看文件中的下一个100个数据 look at the limit " I have more than 400 items and it shows only 100

看看极限&#34;我有400多个项目,只显示100个
这些是我使用过的进口商品

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

请解释好像我是java中的假人

2 个答案:

答案 0 :(得分:0)

DefaultTableModel中添加您的数据,然后将其设置为JTable的模型。

答案 1 :(得分:0)

我不确定这是不是您的意思,但您可以创建一个包含页面编号的变量。

    int page = 1;
    for (int r = 0; r < 100 * page; r++) { //initializing row
        for (int c = 0; c < 4; c++) { //initializing column
            jTable1.setValueAt(null, r, c);
        }
    }

按下按钮可以增加或减少页面,以便页面呈现下一页。