有没有办法将 java 文本区域中的每隔一行设置为不同的颜色?

发布于 2024-10-30 20:07:05 字数 217 浏览 5 评论 0原文

我想将 java 文本区域中的每隔一行设置为第二种颜色,有办法做到这一点吗?

示例:

<red>1</red>    
<blue>2</blue>
<red>3</red>    
<blue>4</blue>

红色和蓝色标签仅作为示例。

I want to set every other line in a java text area to a second color, is there a way to do this?

example:

<red>1</red>    
<blue>2</blue>
<red>3</red>    
<blue>4</blue>

the red and blue tags are just for example only.

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

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

发布评论

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

评论(1

離人涙 2024-11-06 20:07:05

java.awt.TextAreajavax.swing.JTextArea 都不支持文本(或背景)装饰。它是一种字体&一种风格。

正如 Chris 所指出的,JTextPane(或 JEditorPane)是为“样式文本”文档而设计的。例如,JEP 将处理 RTF 和 RTF。 (简单)HTML/CSS 格式。

Neither java.awt.TextArea nor javax.swing.JTextArea support text (or background) decorations. It is one font & one style.

As indicated by Chris, a JTextPane (or JEditorPane) is designed for 'styled text' documents. JEP for example, will handle RTF & (simple) HTML/CSS formatting.

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