『壹』 java中怎麼改變字體顏色

字體大小及顏色
a:Java代碼區域的字體大小和顏色:
window -- Preferences -- General -- Appearance -- Colors And Fonts -- Java修改 -- Java Edit Text Font
b:控制台
window -- Preferences -- General -- Appearance -- Colors And Fonts -- Debug -- Console font
c:其他文件
window -- Preferences -- General -- Appearance -- Colors And Fonts -- Basic -- Text Font

『貳』 Java中怎麼設置JLabel的字體樣式,大小,顏色

1、打開Myeclipse的相關界面,在Window那裡點擊Preferences。

『叄』 關於JAVA設置字體顏色:

試試下面的:
for(int i=0;i<rlButton.length;i++)
{
rlButton[i]=new JButton(mydate.getDays()[i]);
p13.add(rlButton[i]);
if(i%7==0)
{
rlButton[i].setForeground(Color.red);
}
}

『肆』 java中怎麼設置label的字體大小及顏色顯示

Java設置label字體代碼如下:
ublic class SetColor extends JFrame{
JLabel jlabel = new JLabel("顏色,大小");
public SetColor(){
this.setLayout(null);
jlabel.setBounds(0, 0, 200, 40);
jlabel.setFont(new Font("",1,30));//設置字體大小
jlabel.setForeground(Color.BLUE);//設置字體顏色
this.add(jlabel);
this.setSize(200,200);
this.setVisible(true);
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
SetColor sc = new SetColor();
}}

『伍』 java中如何讓字體變色

簡單設置如下:
jlabel.setFont(new java.awt.Font("Dialog", 1, 15));
「dialog」代表字體,1代表樣式(1是粗體,0是平常的)內15是字型大小
//設置容字體
jlabel.setForeground(Color.red);
//設置顏色

『陸』 怎麼在java的文本框中設置字體和顏色

方法如下:

顏色的英文是color,如果swing,所以你定義的對象 會有這個color屬性。

jsp就用<font>標簽,裡面也有color屬性。

字體swing就是font。

『柒』 java 設置字體顏色

Font類...
在文本組件中 設置...

在JTextComponent中 有設置字體顏色等方法..

『捌』 java如何設置文字的格式,例如大小,顏色,字體··等等!

submit= new JButton("登陸");

submit.setFont(new Font("宋體", Font.PLAIN, 16));
三個參數來分別自表示: 字體,樣式(粗體,斜體等),字型大小

submit.setForeground(Color.RED);
這個表示給組件上的文字設置顏色Color.RED表示紅色
當然你也可以自己給RGB的值 比如 submit.setForeground(new Color(215,215,200));

JLabel組件支持html標記代碼
infoLab= new JLabel("<html><a href='地址'>用戶登陸系統</a></html>", JLabel.CENTER);

*注意:地址要單引號引起來。這個表示給用戶登錄系統幾個字增加超鏈接
infoLab .setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));

這個表示給這個文字添加滑鼠樣式,當滑鼠移動到文字上,滑鼠變成手型

『玖』 JAVA 文本框字體顏色

JTextArea本身不具備這樣的功能,它是純文本組件,你可以使用JTextPane,通過操作Document文檔來控制JTextPane顯示的內容,下面的代碼在一個JTextPane中顯示了一個圖標,三行文字,每行用不同的顏色和大小顯示:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.text.*;
import java.io.*;

public class Test {
JFrame frame;
JTextPane textPane;
File file;
Icon image;

public Test(){
frame = new JFrame("JTextPane");
textPane = new JTextPane();
file = new File("./classes/test/icon.gif");
image = new ImageIcon(file.getAbsoluteFile().toString());
}

public void insert(String str, AttributeSet attrSet) {
Document doc = textPane.getDocument();
str ="\n" + str ;
try {
doc.insertString(doc.getLength(), str, attrSet);
}
catch (BadLocationException e) {
System.out.println("BadLocationException: " + e);
}
}

public void setDocs(String str,Color col,boolean bold,int fontSize) {
SimpleAttributeSet attrSet = new SimpleAttributeSet();
StyleConstants.setForeground(attrSet, col);
//顏色
if(bold==true){
StyleConstants.setBold(attrSet, true);
}//字體類型
StyleConstants.setFontSize(attrSet, fontSize);
//字體大小
insert(str, attrSet);
}

public void gui() {
textPane.insertIcon(image);
setDocs("第一行的文字",Color.red,false,20);
setDocs("第二行的文字",Color.BLACK,true,25);
setDocs("第三行的文字",Color.BLUE,false,20);
frame.getContentPane().add(textPane, BorderLayout.CENTER);
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}});
frame.setSize(200,300);
frame.setVisible(true);
}
public static void main(String[] args) {
Test test = new Test();
test.gui();
}
}