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.
の外観をカスタマイズしたくありませんJTable。列名を保持している列識別子を削除したくありません。単に空白のままにしたくはありませんが、それを「隠す」ことはしたくありません。なにか提案を?ありがとう!
JTable
次の方法でテーブルヘッダーを非表示にできます。
table.getTableHeader().setVisible(false);
または、完全に削除することもできます。
table.setTableHeader(null);