Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用类似 Notepad++ 的功能开发 JTextArea(目前缩进功能已完成)。
现在我正在尝试添加一个函数,该函数在我的 JTextArea 中将显示一条虚线以表示具有相同级别的缩进,并更改单词的特定颜色。
提前致谢 :)
您将无法使用 JTextArea 实现您的目标,因为它是纯文本支持组件。您必须使用支持样式文本的 JEditorPane 或 JTextPane。并尝试使用 HTML 文档并实现它。看看
样式化支持的组件
和
更多示例