初学JAVA 自己写了个文本查找、替换的小程序,。 在实现Find 功能时。希望能够将与所查找字符匹配的字符串改变字体或者颜色,以突出显示。 开始想的是想普通选中文字一样,会背景变蓝,文字变白。但是实现不了。 之后又去实验html,发现添加html后没用。 求高手告诉我该如何实现。。 另外在添加如下JDiaLog后: JDialog dialog=new JDialog(); dialog.setTitle("Finding Result"); label=new JLabel("已找到"+times+"结果"); dialog.setLayout(new FlowLayout()); dialog.add(label); dialog.show(true); ///为什么提示 Add @SuppressWarnings 'deprecation' to 'Find()' dialog.pack(); Eclipse 会警告并提示提示 Add @SuppressWarnings 'deprecation' to 'Find()'?求解? 求大神们帮帮我,谢谢啦。。 |