我想将我的JLabel对齐到左边。
String lText = "<html><b><font color = white face = comic sans ms size = 20>mybook</font></b></html>";
JLabel label = new JLabel(lText);
label.setBorder(new EmptyBorder(25,0,25,500));
我尝试使用EmptyBorder但它没有正确对齐。我正在使用FlowLayout
答案 0 :(得分:15)
FlowLayout
使用CENTER
对齐方式。尝试对LEFT
JLabel
容器
JPanel
对齐方式
myJPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
答案 1 :(得分:5)
您可能希望设置JLabel的horizontalAlignment属性。一种方法是通过它的构造函数。尝试:
JLabel label = new JLabel(lText, SwingConstants.LEFT);
这也可以通过预期的setter方法完成:
label.setHorizontalAlignment(SwingConstants.LEFT);