在编辑时将JTable单元格中的值从右向左对齐

时间:2015-11-03 18:18:34

标签: java jtable alignment

我有下表 enter image description here

我找到This代码,将“كوردى”列中的值与“从右到左”对齐。
它工作正常,但是当我编辑单元格时,对齐变为从左到右,如上图所示,
我在编辑时如何将值与从右到左对齐?

1 个答案:

答案 0 :(得分:0)

我找到了答案,谢谢大家

 JTextField textField = new JTextField();
 textField.setBorder(new LineBorder(Color.BLACK));
 DefaultCellEditor dce = new DefaultCellEditor( textField );
 table.getColumnModel().getColumn(2).setCellEditor(dce);
 textField.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);