Java中的换行符插入

发布于 2024-07-14 20:30:22 字数 85 浏览 7 评论 0原文

如果我使用“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千紇 2024-07-21 20:30:22

J标签?

如果您使用 JLabel,则可以在其中使用基本 HTML

尝试以下操作:

<html>Text<br>more text</html>

请参阅此 其他答案

也赞成它;)

JLabel?

If you're using JLabel, you can use basic HTML in it

Try the following:

<html>Text<br>more text</html>

See this other answer

And upvote it too ;)

[浮城] 2024-07-21 20:30:22

在字符串中放入 \n

像这样:

String twoLineString = "first line\nsecond line";

Put a \n in the string.

Like this:

String twoLineString = "first line\nsecond line";
东走西顾 2024-07-21 20:30:22

我不确定您要什么,但您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文