java.lang.ArrayIndexOutOfBoundsException:21> = 21

时间:2015-09-29 10:40:50

标签: java swing jtable defaulttablemodel

我收到以下错误消息。

java.lang.ArrayIndexOutOfBoundsException: 21 >= 21
        at java.util.Vector.elementAt(Vector.java:427)
        at javax.swing.table.DefaultTableColumnModel.getColumn(DefaultTableColumnModel.java:277)
        at com.vanuston.medeil.uitables.PurchaseTable.createTable(PurchaseTable.java:182)
        at com.vanuston.medeil.ui.Purchase.applyDefaults$(Purchase.fx:130)

在下面代码的第三行。

jTable.removeColumn(jTable.getColumnModel().getColumn(19));
jTable.removeColumn(jTable.getColumnModel().getColumn(20));
jTable.removeColumn(jTable.getColumnModel().getColumn(21));
jTable.removeColumn(jTable.getColumnModel().getColumn(22));

我已将第21和第22列添加到DefaultTableModel

Vector cols = new Vector();
    Vector data = new Vector();
    int len = colName.length;
    System.out.println("col length " + len);
    for (int i = 0; i < initRow; i++) {
        Vector c = new Vector();
        for (int j = 0; j < len; j++) {
            if (j == 19 && j == 20) {
                c.addElement(Boolean.FALSE);
            } else {
                c.addElement(null);
            }
        }
        data.addElement(c);
    }
    for (int n = 0; n < len; n++) {
        cols.addElement(colName[n]);
        System.out.println(colName[n]);
    }
    try {
        jTable.setModel(new javax.swing.table.DefaultTableModel(data, cols) {

            Class[] type = types;
            boolean[] canEditCol = canEditCols;

            @Override
            public Class getColumnClass(int columnIndex) {
                return type[columnIndex];
            }

            @Override
            public boolean isCellEditable(int rowIndex, int columnIndex) {
                return canEditCol[columnIndex];
            }

        });

但我不知道,显示ArrayIndexOutOfBounds例外的原因是什么。

1 个答案:

答案 0 :(得分:5)

你打电话给JTable.removeColumn,列数组的每一列都要重新编制索引。例如,当删除元素0时,索引为1的元素现在在索引0处重新编制索引。

您需要以相反的顺序删除这些列,以便不会发生此重建索引:

jTable.removeColumn(jTable.getColumnModel().getColumn(22));
jTable.removeColumn(jTable.getColumnModel().getColumn(21));
jTable.removeColumn(jTable.getColumnModel().getColumn(20));
jTable.removeColumn(jTable.getColumnModel().getColumn(19));

您也可以拨打以下第4行:

jTable.removeColumn(jTable.getColumnModel().getColumn(19));

因为在每次通话i时,第19 + i栏将成为第19栏。