- 论坛徽章:
- 0
|
大家好!我是Java的新手,在一本书上看见一个例子,自己做了一下,发现出错,却不知道为什么,在这里请问大家。
Java源代码是:
/* FileName:getDate.java
* 这是一个显示不同日期格式的Applet小程序实例
*/
- import java.text.*;
- import java.util.*;
- import java.awt.*;
- import java.applet.*;
- public class getDate extends Applet{
- public void paint(Graphics g){
- Date today;
- DateFormat f1,f2;
- String s1,s2;
- today = new Date(); //获取系统当前时间
- //以字符串格式显示
- g.drawString("String Format: "+today.toString(),10,20);
- f1 = DateFormat.getInstance();//以默认格式生成格式化器
- s1 = f1.format(today);//将日期转换为字符串
- //以系统格式显示
- g.drawString("System Format: "+s1,10,40);
- //生成长格式的中国日期格式化式
- f1 = DateFormat.getDateInstance(DateFormat.LONG,Locale.CHINA);
- //生成长格式的中国时间格式化式
- f2 = DateFormat.getTimeInstance(DateFormat.LONG,Locale.CHINA);
- //将日期转换为日期字符串
- s1 = f1.format(today);
- //将时间转换为时间字符串
- s2 = f2.format(today);
- //以 “中国格式”显示时间
- g.drawString("Chinese Format: "+s1+" "+s2,10,60);
- }
- }
复制代码
Html的代码只有:
- <html>;
- <head>;
- <title>;Date Format</title>;
- </head>;
- <body>;
- <APPLET code=getDate.class width=360,height=120>;</APPLET>;
- </body>;
- </html>;
复制代码
为什么只显示一个灰色的Applet的背景,状态栏显示“Applet 已启动”,
而该显示的时间就没有显示出来呢?谢谢! |
|