Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JPanel に JTable を表示しました。JTable はスクロールペイン内にあります。唯一の問題は、グリッド線が表示されないことです。このコード行を使用しようとしましたが、機能しませんでした。
table.setShowGrid(true);
以下は写真です: グリッド線がないことに注意してください
前もって感謝します。
エッチングされた境界線があると違いがありますか?
table.setBorder(new EtchedBorder(EtchedBorder.RAISED));
編集:
グリッド線のデフォルトの色は白のようです。
table.setGridColor(Color.BLUE)
table.setShowHorizontalLines(true); table.setShowVerticalLines(true);