java的JLabel中显示的文字换行

   无法通过直接settext实现,可以通过html标签中br换行实现。

 

   JLabel.setText("<html>new line</html>");
JLabel.setText("<html>this line<br>add a new line</html>");

你可能感兴趣的:(java,html)