在JTable中移动多个列

时间:2013-06-17 16:00:27

标签: java swing jtable

我在JTable中添加和移动多个列时遇到问题。

我有每列中某些日期的数据和列标题。一切都在移动本身很好,但在我添加并移动下一列后,它会重置。

我没有改变项目中其他任何列的位置。

以下是输出示例(仅限标题):

| 5 | 6 | 7 | 8 |

添加标题“1”并移至索引0:

| 1 | 5 | 6 | 7 | 8 |

添加标题“2”并移至索引1:

| 5 | 2 | 6 | 7 | 8 | 1 |

添加标题“3”并移至索引2:

| 5 | 6 | 3 | 7 | 8 | 1 | 2 |

以及一些跟进的代码(问题位置由“<<<<<”指定):

 public void recalculateTableDates(String start, String end, Double defaultValue) {     
    String startDate = getTblDetails().getColumnName(1);
    String endDate = getTblDetails().getColumnName(getTblDetails().getColumnCount()-1);

    int sMonth = Integer.parseInt(start.substring(4, 6));
    int sYear = Integer.parseInt(start.substring(0, 4));
    int eMonth = Integer.parseInt(end.substring(4, 6));
    int eYear = Integer.parseInt(end.substring(0, 4));

            // gets distance between 2 values
            // (Used elsewhere in project, working as intended)
    int duration = getDuration(sMonth, sYear, eMonth, eYear);

    Vector<Double> data = new Vector<Double>(duration);

    for(int i = 0; i < data.size(); i++) {
         data.addElement(defaultValue);
    }

    for(int i = 1, mCount = sMonth, yCount = sYear; i < duration+1; i++) {
        String yyyymm = String.valueOf(yCount)+String.format("%02d", mCount++);





                    // Adds to beginning - PROBLEM HERE <<<<<<<<<<<<<<<<<<<<<<<<<<
        if(yyyymm.compareTo(startDate) < 0) {
            getModel().addColumn(yyyymm, data);
            moveColumn(tblDetails.getColumnCount()-1, i);

        } else if(yyyymm.compareTo(endDate) > 0) {
                              // THIS IF STATEMENT WORKING AS INTENDED
                  getModel().addColumn(yyyymm, data);
        }

        if(mCount > 12) {
            mCount = 1;
            yCount++;
        }

    }

    int length = getTblDetails().getColumnCount()-1;
    System.out.println(duration + " " + length);
    if(length > duration) {
        TableColumnModel colModel = getTblDetails().getColumnModel();
        for(int i = length; i > duration; i--) {
            colModel.removeColumn(colModel.getColumn(i));
        }
    }

    this.revalidate();
    this.repaint();
}



    // Moves column in table
 private void moveColumn(int column, int targetIndex) {
      getTblDetails().moveColumn(column, targetIndex);
 }

我意识到代码有点乱。一直在努力改变这种状态并且要修复它。

有谁知道为什么这样做?我对JTable没有丰富的经验。

1 个答案:

答案 0 :(得分:3)

将列添加到模型中时,将从模型重建表的TableColumns,这样就会丢失对表执行的所有自定义操作。这意味着您丢失了可能已添加的任何自定义渲染器,并且您丢失了列的重新排序。

为防止这种情况,您可以在最初创建表时执行以下操作:

JTable table = new JTable(...);
table.setAutoCreateColumnsFromModel( false );

因为TableColumn不会自动创建,所以您需要自己执行此操作,代码将类似于:

String header = "Col" + (table.getColumnCount() + 1);
model.addColumn( header );

//  AutoCreate is turned off so create table column here

TableColumn column = new TableColumn( table.getColumnCount() );
column.setHeaderValue( header );
table.addColumn( column );