textarea是可以设置字体颜色的

引自:http://www.coderanch.com/t/436752/GUI/java/change-textArea-font-color

 

Hi,


How can I do dynamically change of font color in textArea ?

For example:

For the first line I will use blue color:
textArea.setForeground(Color.BLUE);
textArea.append("first");

for the next line I want to use:
textArea.setForeground(Color.BLACK);
textArea.append("second");

I try repaint but it’s not working

Thanks

 

最后说两句:百度对程序员的查询来说还是不靠谱的,google老师才是大拿!

                      多看看api,多看看英文网站,相比之下,还是外国人靠点谱

 

猜你喜欢

转载自blog.csdn.net/qwerty123501029/article/details/7412039