java显示当前的系统时间

时间:2022-03-06 10:12:17

编写Applet小程序,通过在HTML文档中接收参数,用不同颜色、字体显示当前的系统时间。

Ex4_1.java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import java.awt.*;
import java.applet.Applet;
import java.util.Calendar;
 
public class Ex4_1 extends Applet
{
 Calendar now;
 private String s1;
 private int size,color;
  
 public void init()
 {
  now=Calendar.getInstance();  //获得系统当前时间
  s1=now.get(now.HOUR)+"时"
  +now.get(now.MINUTE)+"分"
  +now.get(now.SECOND)+"秒";
  size=Integer.parseInt(getParameter("size"));//获得字体大小
  color=Integer.parseInt(getParameter("color"),16); //获得颜色值
 }
  
 public void paint(Graphics g)
 {
  Color c=new Color(color);
  g.setColor(c);
  Font f=new Font("",1,size);
  g.setFont(f);
  g.drawString(s1,10,50);   //显示指定大小颜色的字符串
 }
}

Ex4_1.html

?
1
2
3
4
5
6
7
<html>
<Applet code="Ex4_1.class" width=300 height=100>
<param name=s1 value=s1>
<param name=size value=30>
<param name=color value=007000>
</Applet>
</html>

运行效果图:

java显示当前的系统时间

一个简单的小程序就这样完成了,大家可以根据自己喜好改变字体和颜色,希望对大家学习java编程有所帮助哦。

相关文章