JLabel的字体样式,大小,颜色设置用到以下两个方法:
jlabel.setFont(new java.awt.Font(“Dialog”, 1, 15));
“dialog”代表字体,1代表样式(1是粗体,0是平常的)15是字号
//设置字体
jlabel.setForeground(Color.red);
//设置颜色
来源:CSDN
作者:Lance.Rand
链接:https://blog.csdn.net/qq_36109318/article/details/104166788