• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签:

资源简介

Java入门-万年历(实例37).zip

资源截图

代码片段和文件信息

import java.applet.applet; 
import java.awt.*; 
import java.util.*; 

public class Calendarapplet extends applet{ 

static final int TOP = 70;  //顶端距离
static final int CELLWIDTH=50CELLHEIGHT = 30;  //单元格尺寸
static final int MARGIN = 3;  //边界距离
static final int FEBRUARY = 1; 

TextField tfYear = new TextField(“2004“ 5); //显示年份的文本域
Choice monthChoice = new Choice();  //月份选择下拉框
Button btUpdate = new Button(“更新“);  //更新按钮
GregorianCalendar calendar=new GregorianCalendar(); //日历对象
Font smallFont = new Font(“TimesRoman“ Font.PLAIN 15);  //显示小字体
Font bigFont = new Font(“TimesRoman“ Font.BOLD 50);  //显示大字体
String days[] = {“星期日“ “星期一“ “星期二“ “星期三““星期四“ “星期五“ “星期六“};  
String months[] = {“一月“ “二月“ “三月“ “四月““五月“ “六月“ “七月“ “八月“ “九月““十月“ “十一月“ “十二月“

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      475262  2004-05-23 02:54  43-1.bmp
     文件         165  2004-05-22 17:28  Calendar.html
     文件        4537  2004-05-23 02:52  Calendarapplet.class
     文件        5900  2004-05-23 04:10  Calendarapplet.java

评论

共有 条评论