JLabel - 将较长的文本显示为多行?

2022-09-05 00:03:34

所以假设我有一个非常长的行,我想在.我该怎么做?JLabel

目前,更长的行出现如下:

enter image description here

我必须调整窗口大小才能看到完整的文本。

我怎样才能使文本几乎达到我的宽度时有换行符?JFrame

我不确定这里是否需要任何代码来回答这个问题,但仍然:

我的框架属性:

frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(new Dimension(450, 400));
frame.setLocation(new Point(400, 300));
frame.setLayout(new BorderLayout());

我要修改的标签:

question = new JLabel("Question:");
question.setFont(new Font("Serif", Font.BOLD, 15));
question.setHorizontalAlignment(JLabel.CENTER);

编辑:更多细节:

我正在从文件中读取行,然后显示它们。线条的大小不是固定的,所以我不知道放在哪里。<br>

编辑2:

我最终使用了.JTextArea

private JTextArea textAreaProperties(JTextArea textArea) {
    textArea.setEditable(false);  
    textArea.setCursor(null);  
    textArea.setOpaque(false);  
    textArea.setFocusable(false);
    textArea.setLineWrap(true);
    textArea.setWrapStyleWord(true);
    return textArea;
}

答案 1

再举一个例子,表明使用正确的布局管理器,用标签包装的文本将自动换行到可用空间...HTML

enter image description here

public class TestHTMLLabel {

    public static void main(String[] args) {
        new TestHTMLLabel();
    }

    public TestHTMLLabel() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                StringBuilder sb = new StringBuilder(64);
                sb.append("<html>I have something to say, it's beter to burn out then to fade away.").
                                append("  This is a very long String to see if you can wrap with in").
                                append("the available space</html>");

                JLabel label = new JLabel(sb.toString());

                JFrame frame = new JFrame("Test");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(label);
                frame.setSize(100, 100);
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }    
        });
    }        
}

答案 2

使用 HTML 在标签中显示文本。

JLabel fancyLabel = new JLabel("<html>Punch Taskmaster</html>");

(添加了任务管理员建议的示例)


推荐