我有一个名为tblMainData的表,其中有几列,两列的宽度为0。

我想将所有数据存储在表中,除了那些宽度为0的列到二维数组。

如何检查特定列的宽度是否为0?

最佳答案

只需调用TableColumn#getWidth()

for(int col = 0; col < tblMainData.getColumnCount(); col++)
{
    if(tblMainData.getColumn(col).getWidth() == 0)
    {
        // do something
    }
}

09-12 03:56