Java中的换行符插入
如果我使用“label”而不是 System.out.println(),如何在 Java applet 程序中插入换行符?
提前致谢。
How can I insert a newline character in a Java applet program if I am using "label" instead of System.out.println()
?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
J标签?
如果您使用 JLabel,则可以在其中使用基本 HTML
尝试以下操作:
请参阅此 其他答案
也赞成它;)
JLabel?
If you're using JLabel, you can use basic HTML in it
Try the following:
See this other answer
And upvote it too ;)
在字符串中放入
\n
。像这样:
Put a
\n
in the string.Like this:
我不确定您要什么,但您可以使用 System.getProperty("line.separator"); 获取操作系统的行分隔符。
I am not sure what you are asking for but you can use
System.getProperty("line.separator");
to get the line separator for your operating system.