1

I am building text editor application using swing and JFrame. I want to give color to all keywords,constants.exactly like some java editors do. How can i achive this ? Please help me. Thnx in advance.

4

2 回答 2

2

请先尝试,然后提出问题。坦率地说,我们无法回答,请发布您尝试过的代码。

无论如何,我都会发布链接,这会给你一些想法。

突出显示java

于 2012-11-19T04:22:08.590 回答
1

您可以使用 html 为单词着色,唯一需要做的就是替换所需的字符串。为此,您可以使用字符串 replaceAll 方法:
http
://docs.oracle.com/javase/7/docs/api/java/lang/String.html比搜索 replaceAll 方法。

于 2012-11-19T03:51:36.180 回答