从jtable获取数据到ArrayList <string [] =“”>

时间:2017-03-07 12:20:53

标签: java swing arraylist jtable

我从JTable获取数据时遇到了问题。我需要将其保存到ArrayList<String[]>。我做了一个行和列的循环,但有些东西不起作用,它只保存最后一行...

这是功能示例:

private void saveTable(){

    ArrayList<String[]> tableSaved = new ArrayList<>();
    String[] rowSaved = new String[headerTable.length];
    String cellValue;

    for(int row=0;row<table.getModel().getRowCount();row++){
        for (int column=0; column<table.getModel().getColumnCount();column++){  
            cellValue = (String) table.getModel().getValueAt(row, column);
            rowSaved[column] = cellValue;

        }       
        tableSaved.add(rowSaved);
        // I check here if the output is correct, and It is.    
        System.out.println("GET");
        for(String s:rowSaved){
            System.out.print(s+" ");
        }
    }

    //When I check if the tableSaved is correct, It doesn't.
    System.out.println("");
    System.out.println("ACTUALLY SAVED");
    for (String[] row:tableSaved){          
        for (String s:){
            System.out.print(" "+s);
        }
        System.out.println("");
    }

我也试过这个循环

    int row=0;
    while (row<table.getModel().getRowCount()){ 
        int column=0;

        while (column<table.getModel().getColumnCount()){

            cellValue = (String) table.getModel().getValueAt(row, column);
            rowSaved[column] = cellValue;
            column++;
        }       
        tableSaved.add(rowSaved);
        row++;
    }

它返回最后一行与表格中的行一样多次......我正在寻找答案,但我没有解决这个问题

这是一个示例屏幕截图

data from table returns

1 个答案:

答案 0 :(得分:2)

问题在于gpg --export-secret-keys > key.skr您要添加一个字符串数组,但是您要保留该数组的引用,并在下一次迭代中更改该相同数组的元素。

当您开始阅读元素或将数组添加到tableSaved.add(rowSaved);后,在循环内创建一个新的rowSaved = new Sting[]

ArrayList行之后添加此行tableSaved.add(rowSaved);