如何将JLabel的文本扩展到另一行?
您可以通过在代码中放置HTML来实现,因此:
JFrame frame = new JFrame(); frame.setLayout(new GridLayout()); JLabel label = new JLabel("First line
Second line"); frame.add(label); frame.pack(); frame.setVisible(true);
如果你想让你的jLabel文本自动调整大小,例如在一个可伸缩的gridbaglayout中,只需将其文本放在html标签中就像这样:
JLabel label = new JLabel("First line and maybe second line");
在标记内键入内容(即"text"属性字段).所以你可以使用
或插入换行符.
例如:
String labelContent = "Twinkle, twinkle, little star,
How I wonder what you are.
Up above the world so high,
Like a diamond in the sky.";
它将显示如下:
闪烁,闪烁,小星星,
我多么想知道你是谁.
在世界之上如此之高,
就像天空中的钻石一样.
我已经将JTextArea用于多行JLabel。
JTextArea textarea = new JTextArea ("1\n2\n3\n"+"4\n");
http://docs.oracle.com/javase/7/docs/api/javax/swing/JTextArea.html