共计 461 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用以下方法来设置 Date 类型的日期:
- 使用 Date 类的构造函数:
Date date = new Date(year - 1900, month - 1, day);
其中,year 表示年份(如 2022),month 表示月份(1 表示一月,12 表示十二月),day 表示日期(1 表示第一天,31 表示最后一天)。
- 使用 Calendar 类的 set 方法:
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.YEAR, year);
calendar.set(Calendar.MONTH, month - 1);
calendar.set(Calendar.DAY_OF_MONTH, day);
Date date = calendar.getTime();
其中,year 表示年份,month 表示月份,day 表示日期。
注意:在使用 Date 类和 Calendar 类设置日期时,月份的表示是从 0 开始的(0 表示一月,11 表示十二月),所以需要在输入月份时减去 1。
丸趣 TV 网 – 提供最优质的资源集合!
正文完