如何在 jeditorpane 中格式化特定单词/句子?
我不是java专家。只是边走边学..这就是我的方式!我现在正在设计一个C++ IDE(只是有趣,不专业)。我的项目快准备好了,现在我想向 IDE 添加一些文本突出显示功能。例如,我希望 IDE 能够识别一组预定义的单词并将它们着色为绿色、红色。我该怎么做?
I am not a java expert. Just learning as i go.. This is my way! I am now designing a IDE for C++ (just fun, not professional) . I have the project almost ready, now i want to add some text highlighting function to the IDE. For example i want the IDE to recognize a predefined set of words and color them green,red. How do i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 HTML,但使用 TextAction 方法。
另一种选择是 StyledDocument 接口。
由于评论而添加:您可以使用 StyledEditorKit 类来查看
TextAction
的实现。以下是 Oracle 关于如何使用编辑器窗格和文本窗格的教程。
You could use HTML, but you probably would be better off using the TextAction methods for a
JEditorPane
.Another alternative is the StyledDocument interface.
Added because of the comment: You can use the StyledEditorKit class to see implementations of
TextAction
.Here's Oracle's tutorial on How to Use Editor Panes and Text Panes.