改成这样就可以了
创新互联是一家专业提供什邡企业网站建设,专注与成都网站建设、网站制作、HTML5建站、小程序制作等业务。10年已为什邡众多企业、政府机构等服务。创新互联专业的建站公司优惠进行中。
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,但是这并不影响对象中的属性,对象的属性还是和之前定义时一样;所以不会改变。。。
html
head
style type="text/css"
h1 {font-size:60px;}//改变字体的大小
h2 {font-size:40px;}
p {font-size:14px;}
/style
/head
body
h1This is heading 1/h1
h2This is heading 2/h2
pThis is a paragraph./p
pThis is a paragraph./p
p.../p
/body
/html
java控制台输出字体大小设置方法:\x0d\x0a1.打开Eclipse或者Myeclipse,选择windows(系统)选项;\x0d\x0a2.点击preferences(首选项);\x0d\x0a3.弹出首选项的窗口,点击Appearance(外观);\x0d\x0a4.点击color and font (颜色和字体);\x0d\x0a5.点击Debug展开,点击console font(控制台字体);\x0d\x0a6.再点击Edit进行编辑,进入设置大小,然后点击确定即可。
submit=newJButton("登陆");\x0d\x0a\x0d\x0asubmit.setFont(newFont("宋体",Font.PLAIN,16));\x0d\x0a三个参数分别表示:字体,样式(粗体,斜体等),字号\x0d\x0a\x0d\x0asubmit.setForeground(Color.RED);\x0d\x0a这个表示给组件上的文字设置颜色Color.RED表示红色\x0d\x0a当然你也可以自己给RGB的值比如submit.setForeground(newColor(215,215,200));\x0d\x0a\x0d\x0aJLabel组件支持HTML标记代码\x0d\x0ainfoLab=newJLabel("用户登陆系统",JLabel.CENTER);\x0d\x0a\x0d\x0a*注意:地址要单引号引起来。这个表示给用户登录系统几个字增加超链接\x0d\x0ainfoLab.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));\x0d\x0a\x0d\x0a这个表示给这个文字添加鼠标样式,当鼠标移动到文字上,鼠标变成手型
JTextArea t = new JTextArea();
Font font = new Font("Default",Font.PLAIN,size);
t.setFont(font);
//其中size 就是字体的大小,可以设置。只要再用t.setFont()安装新的字体就行了。
将它所在的容器设置为空布局
这样你就可以在该容器内随意摆放控件了,比如
JPanel p = new Jpanel();
JLabel l = new JLabel("java");
p.setLayout(null);//设置空布局
p.add(l);//添加控件
l.setLocation(0,0,50,20);//设置控件相对于容器JPanel左上角的距离和控件的大小。
Java设置label字体代码如下:
ublicclassSetColorextendsJFrame{
JLabeljlabel=newJLabel("颜色,大小");
publicSetColor(){
this.setLayout(null);
jlabel.setBounds(0,0,200,40);
jlabel.setFont(newFont("",1,30));//设置字体大小
jlabel.setForeground(Color.BLUE);//设置字体颜色
this.add(jlabel);
this.setSize(200,200);
this.setVisible(true);
}
/**
*@paramargs
*/
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
SetColorsc=newSetColor();
}}