java.lang.ArrayIndexOutOfBoundsException: 21 >= 21

java.lang.ArrayIndexOutOfBoundsException: 21 >= 21

我收到以下错误消息。

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异常的原因是什么。

好吧,您调用 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 列。