如何更改 JTable 标头的字体?

2022-09-02 19:18:30

我想设置JTable标题的字体。你知道怎么做吗?


答案 1

这应该有效:

    table.getTableHeader().setFont(new Font("SansSerif", Font.ITALIC, 12));

答案 2
JTableHeader header = table.getTableHeader();
header.setFont(new Font("Dialog", Font.BOLD, 18));

推荐