新线\\ n不中JButton.setText工作(“fnord \\ nfoo”); [重复]

2019-07-04 01:38发布

这个问题已经在这里有一个答案:

  • 在Jbutton将自动换行 4个回答

在一个JButton,我想列出多条线路上的信息。 我试过\n作为新行字符,但没有奏效。 下面的代码:

JButton.setText("fnord\nfoo") ;

将显示为:

fnordfoo

如何强制换行?

Answer 1:

JButton的接受HTML,因此对于断行工作使用:

 JButton.setText("<html>fnord<br />foo</html>");


文章来源: New Line \\n is not working in JButton.setText(“fnord\\nfoo”) ; [duplicate]