如何创建一个没有垂直和水平线的JTable ......
答案 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
使用此代码:)