我想从右到左对齐整个JTable
(不仅是单元格的值)。
我做了以下事情:
table.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
table.getTableHeader().setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
表的内容已成功定向,但问题出在标题中
最佳答案
尝试在父组件上设置ComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT)。如this bug中所述