有没有办法将 java 文本区域中的每隔一行设置为不同的颜色?
我想将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
java.awt.TextArea
和javax.swing.JTextArea
都不支持文本(或背景)装饰。它是一种字体&一种风格。正如 Chris 所指出的,
JTextPane
(或JEditorPane
)是为“样式文本”文档而设计的。例如,JEP 将处理 RTF 和 RTF。 (简单)HTML/CSS 格式。Neither
java.awt.TextArea
norjavax.swing.JTextArea
support text (or background) decorations. It is one font & one style.As indicated by Chris, a
JTextPane
(orJEditorPane
) is designed for 'styled text' documents. JEP for example, will handle RTF & (simple) HTML/CSS formatting.