色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

JAVA隱藏和顯示列

孫昌合1年前5瀏覽0評論

在JAVA中,我們有時需要通過隱藏或顯示列來修改表格的外觀或按照特定的需求進行排序。下面是一些例子來展示如何在JAVA中隱藏和顯示列。

//隱藏列的例子:
TableColumnModel tcm = table.getColumnModel();
tcm.getColumn(2).setMinWidth(0);
tcm.getColumn(2).setMaxWidth(0);
tcm.getColumn(2).setWidth(0);
tcm.getColumn(2).setPreferredWidth(0);
//顯示列的例子:
TableColumnModel tcm = table.getColumnModel();
tcm.getColumn(2).setMinWidth(50);
tcm.getColumn(2).setMaxWidth(200);
tcm.getColumn(2).setWidth(100);
tcm.getColumn(2).setPreferredWidth(100);

在隱藏列的例子中,我們需要使用TableColumnModel類的getColumn()函數來獲取表格中的特定列,此處我們選擇了第三列,然后使用setMinWidth()、setMaxWidth()、setWidth()、setPreferredWidth()函數來將該列的寬度設置為0,即隱藏該列。在顯示列的例子中,我們需要再次使用getColumn()函數來獲取該列,然后通過設置四個函數值來顯示該列。

通過上述例子,我們可以在JAVA中輕松地隱藏和顯示表格的列,以便于我們的各種需要。