Java日历制作
程序员文章站
2022-05-07 21:54:46
...
Java中如何实现一个简单的日历@TOC
整体思路
要实现的功能为:在控制台输入相对应的日期的字符串,然后打印出当月的日历;
- 用到Scanner类,用于获取控制台输入的日期信息;
- 用到SimpleDateFormat类,用于设置日期格式,并将字符串形式的日期解析为Date形式;
- 此时Date类的对象代表的日期为我们输入的日期;
- 用Date对象初始化Calendar对象,然后通过Calendar对象的方法获得当月最大天数calendar.getActuralMaxmum(Calendar.DAY_OF_MONTH),当天是当月的第几天calendar.get(Calendar.DAY_OF_MONTH),当月第一天是星期几calendar.get(DAY_OF_WEEK);
代码如下:
public class mycalendartest2 {
public static void main(String args[]){
new mycalendartest2().myCalendar();
}
public void myCalendar(){
int maxday = 0;
int firstday = 0;
int currentday = 0;
System.out.println("请输入一个日期: 格式为:2016-08-09");
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
try {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date d1 = sdf.parse(str);
Calendar calendar = Calendar.getInstance();
calendar.setTime(d1);
maxday = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);
currentday = calendar.get(Calendar.DAY_OF_MONTH);
firstday = calendar.get(Calendar.DAY_OF_WEEK) - 1;
}
catch(ParseException e){
e.printStackTrace();
}
System.out.println("日\t一\t二\t三\t四\t五\t六\t\n");
for(int i = 0; i < firstday; i++){
System.out.print("\t");
}
for(int j = 1; j <= maxday; j++){
if(j == currentday){
System.out.print("#" + "\t");
if ((j + firstday) % 7 == 0) {
System.out.print("\n");
}
}
else {
System.out.print(j + "\t");
if ((j + firstday) % 7 == 0) {
System.out.print("\n");
}
}
}
}
}
输入1994-04-17结果为:
请输入一个日期: 格式为:2016-08-09
1994-04-17
日 一 二 三 四 五 六
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 # 18 19 20 21
22 23 24 25 26 27 28
29 30
Process finished with exit code 0