java font如何设置字体颜色
时间: 2024-05-10 18:16:19 浏览: 249
idea仿真eclipse字体颜色(java)设置
5星 · 资源好评率100%
在 Java 中,可以使用 Font 类和 Color 类来设置字体和颜色。下面是一个示例代码,演示如何设置字体颜色:
```
import java.awt.Color;
import java.awt.Font;
import javax.swing.*;
public class MyFrame extends JFrame {
public MyFrame() {
JTextArea textArea = new JTextArea();
textArea.setFont(new Font("Arial", Font.PLAIN, 18)); //设置字体
textArea.setForeground(Color.RED); //设置字体颜色
getContentPane().add(textArea);
pack();
setVisible(true);
}
public static void main(String[] args) {
new MyFrame();
}
}
```
在上面的示例代码中,我们使用 `setFont()` 方法设置字体,使用 `setForeground()` 方法设置字体颜色。在这里,我们设置字体为 Arial,大小为 18,颜色为红色。
阅读全文