Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我使用“标签”而不是 ,如何在 Java 小程序程序中插入换行符System.out.println()?
System.out.println()
提前致谢。
J标签?
如果您使用的是 JLabel,则可以在其中使用基本 HTML
尝试以下操作:
<html>Text<br>more text</html>
看到这个其他答案
并赞成它;)
我不确定您要的是什么,但您可以使用它System.getProperty("line.separator");来获取操作系统的行分隔符。
System.getProperty("line.separator");
将 a\n放入字符串中。
\n
像这样:
String twoLineString = "first line\nsecond line";