java JTextArea改颜色
时间: 2024-03-10 17:44:31 浏览: 79
改变JTextArea指定位置的背景色
要改变Java JTextArea的颜色,可以使用setForeground()方法和setBackground()方法。setForeground()方法可以设置文本颜色,setBackground()方法可以设置背景颜色。例如,如果要将文本颜色设置为红色,背景颜色设置为黄色,可以使用以下代码:
```
JTextArea textArea = new JTextArea();
textArea.setForeground(Color.RED);
textArea.setBackground(Color.YELLOW);
```
其中,Color.RED和Color.YELLOW是Java自带的颜色对象,您也可以使用其他颜色对象或RGB值来设置颜色。
阅读全文