没有水平和垂直线的JTable

时间:2010-07-20 07:13:11

标签: java swing netbeans jtable

如何创建一个没有垂直和水平线的JTable ......

2 个答案:

答案 0 :(得分:11)

尝试使用setShowGrid()setShowVerticalLines()setShowHorizontalLines()

<强> setShowVerticalLines()

  

设置表是否绘制垂直   细胞之间的线条。如果   showVerticalLines确实如此;如果   它不是假的。

<强>示例:

table.setShowGrid(false);
table.setShowVerticalLines(false);

table.setShowGrid(false);
table.setShowHorizontalLines(false);

答案 1 :(得分:0)

jTable4.setShowHorizontalLines(true); // only HorizontalLines
  jTable4.setShowVerticalLines(true); //  only VerticalLines
  jTable4.setShowGrid(true);          // show Horizontal and Vertical
  jTable4.setGridColor(Color.yellow); // change line color 

使用此代码:)