Java - 如何在swing中添加换行符

时间:2016-02-03 23:40:44

标签: java swing line-breaks

我正在为我的迷你游戏添加一个按钮,但我不知道如何进行换行。我想在按钮和文本之间留一个空格,这里是代码:

JPanel panel1 = new JPanel();
JLabel label1 = new JLabel("Welcome to the Wall Game!");
JLabel label2 = new JLabel("Click the button to read the instructions!");
JLabel space = new JLabel("");
JButton button1 = new JButton("Start");
button1.setText("Start!");

label1.setFont(font1); 
panel1.add(label1); //adds in all the labels to panels
panel1.add(label2);
panel1.add(space);
panel1.add(button1);
this.add(panel1); //adds the panel

欢迎信息中单独显示的内容,但出于某种原因,按钮位于label2旁边有人知道怎么做?

顺便说一下,如果您还不知道,则需要import javax.swing.*;。 感谢任何知道的人。

1 个答案:

答案 0 :(得分:6)

JPanel默认使用FlowLayout,显然无法满足您的需求。您可以使用GridBagLayout代替。

有关详细信息,请查看Laying Out Components Within a ContainerHow to Use GridBagLayout

像...一样的东西。

Welcome

JPanel panel1 = new JPanel();
JLabel label1 = new JLabel("Welcome to the Wall Game!");
JLabel label2 = new JLabel("Click the button to read the instructions!");
JButton button1 = new JButton("Start");
button1.setText("Start!");

Font font1 = label1.getFont().deriveFont(Font.BOLD, 24f);
label1.setFont(font1);

panel1.setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridwidth = GridBagConstraints.REMAINDER;
panel1.add(label1, gbc); //adds in all the labels to panels
panel1.add(label2, gbc);
gbc.insets = new Insets(30, 0, 0, 0);
panel1.add(button1, gbc);

作为例子