『壹』 java中控制字體大小的設置

改成這樣就可以了

import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;

public class controlString extends Applet implements ActionListener {

Button btn1, btn2;

int i = 20;

TextArea tx;

public void init() {
btn1 = new Button("big");
btn2 = new Button("small");
tx = new TextArea(50, 50);
add(btn1);
add(btn2);
add(tx);
tx.setFont(new Font("SansSerif", Font.BOLD, i));
btn1.addActionListener(this);
btn2.addActionListener(this);

}

public void actionPerformed(ActionEvent e) {
if (e.getSource() == btn1 && i < 60) {
i = i + 4;
tx.setFont(new Font("SansSerif", Font.BOLD, i));

tx.setText("i is changed to" + i);

} else if (e.getSource() == btn2 && i > 4) {
i = i - 4;
tx.setFont(new Font("SansSerif", Font.BOLD, i));
tx.setText("i is changed to" + i);
}

}
}

------------------
Font font1=new Font("SansSerif",Font.BOLD,i);
在這里 你創建了一個對象font1,然後其屬性都在這里定義了;之後你增加了變數i,但是這並不影響對象中的屬性,對象的屬性還是和之前定義時一樣;所以不會改變。。。

『貳』 java 設置文本框輸出文字的大小

Font font = taLog.getFont();
taLog.setFont(new Font(font.getName(), font.getStyle(), 20));

『叄』 〓手機java 如何設置字體大小

private Font font = Font.getFont(Font.FACE_SYSTEM , Font.STYLE_PLAIN, Font.SIZE_SMALL);

最後一個參數:Font.SIZE_SMALL 小字體
可以用中字體和大字體:Font.SIZE_MEDIUM 和 Font.SIZE_LARGE

『肆』 java 設置字體格式

Java Swing中可以給每個控制項設置字體格式和其他屬性的設置,示例如下:
submit= new JButton("登陸");
submit.setFont(new Font("宋體", Font.PLAIN, 16));
三個參數分別表示: 字體,樣式(粗體,斜體等),字型大小
submit.setForeground(Color.RED);
這個表示給組件上的文字設置顏色Color.RED表示紅色
當然你也可以自己給RGB的值 比如 submit.setForeground(new Color(215,215,200));

『伍』 java中,怎麼設置JButton字體的大小和粗體

可以這樣設置JButton的字體大小和粗體
JButton jb=new JButton("確定");
Font f=new Font("宋體",Font.BOLD,16);//根據指定字體名稱、樣式和磅值大小,創建一個新 Font。
jb.setFont(f);

『陸』 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編輯器的字體大小

我猜你用的是Eclipse吧. 下面是Eclipse的字體設置:

(1) 首先: 菜單 Window -> Preferences

(2) 然後,找到圖片中的位置,進行設置.

『捌』 java裡面怎麼設置字體大小

JTextArea t = new JTextArea();
Font font = new Font("Default",Font.PLAIN,size);
t.setFont(font);
//其中size 就是字體的大小,可以設置。只要再用t.setFont()安裝新的字體就行了。

『玖』 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));

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