如何填充 JTextPane

发布于 2025-01-06 09:08:20 字数 62 浏览 2 评论 0原文

我有一个字符串数组,想将它们一一添加到 JTextPane 中,每个字符串都用新行分隔。我将如何实现这一目标?

I have an array of string and would like to add them one by one to the JTextPane, each of which to be separated by a new line. How would I go about achieving this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

百善笑为先 2025-01-13 09:08:20

首先创建以“\n| 字符作为分隔符的行。第二次调用

textPane.getDocument().insertString(textPane.getDocument().getLength(), theSumOfStrings, new SimpleAttributeSet());

First create line with "\n| chars as separators. Second call

textPane.getDocument().insertString(textPane.getDocument().getLength(), theSumOfStrings, new SimpleAttributeSet());
绅刃 2025-01-13 09:08:20

使用系统属性换行:

String separator = System.getProperty( "line.separator" );
StringBuilder sb = new StringBuilder();
for (String s : myStringArray) {
    sb.append(s + separator);
}
myTextPane.setText(sb.toString());

编辑:我在中找到旧线程,提到了该属性的用法<一href="http://docs.oracle.com/javase/7/docs/api/javax/swing/text/DefaultEditorKit.html#EndOfLineStringProperty" rel="nofollow">EndOfLineStringProperty,这是有道理的,因为JTextPane 扩展了使用文档的 JEditorPane。我会尝试一下。另外,在 JTextPane 文档 中,写有:

有关如何处理换行符的讨论,请参阅 DefaultEditorKit。

Use the system property for new line:

String separator = System.getProperty( "line.separator" );
StringBuilder sb = new StringBuilder();
for (String s : myStringArray) {
    sb.append(s + separator);
}
myTextPane.setText(sb.toString());

Edit: I found in an old thread, that mentions the usage of the property EndOfLineStringProperty, which makes sense, since the JTextPane extends JEditorPane which uses a document. I would give that a shot. Also, in the JTextPane docs, is written:

For a discussion on how newlines are handled, see DefaultEditorKit.

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