我目前只能在最后一列添加一列,并删除添加的最后一列。
我正在尝试弄清楚如何添加或删除所选列,但它只是不适合我。例如,如果我有3列0,1和2,并且我想将列添加到1或删除列1.
我在图书馆呆了一个小时,但我能做的最多就是删除并在选定的地方添加行。
有人可以帮忙吗?
这就是我添加列的方法,但它没有做我想要的(只添加到结尾):
String colName = Integer.toString(i++);
if (colName != null && colName.length() > 0) {
model.addColumn(colName);
table.updateUI();
undo.push(new Object[]{"Column", "Add", colName});
redo.clear();
}
答案 0 :(得分:5)
要在任意索引处添加列,请使用表格列模型的addColumn()
,然后使用moveColumn()
:
TableColumn newColumn = // ...
colModel.addColumn(newColumn);
colModel.moveColumn(colModel.getColumnCount() - 1, desiredIndex);
删除索引处的列应该更容易:
colModel.removeColumn(colModel.getColumn(desiredIndex));