Java里,如何得到一个月有多少天
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java里,如何得到一个月有多少天相关的知识,希望对你有一定的参考价值。
按照你的要求,如何得到一个月有多少天,这里并没有说是什么年份,所以默认当年(不同年份的月份天数可能不一样,例如闰年的二月)
因此问题变为
输入条件:指定某一个月
输出结果:当年这个月份的天数
思路:在Java8里新的时间API里,月份已经被抽象成了枚举Month,所以可以把输入条件定义为枚举类型的Month,然后获取当前时间X,把时间X的月份修改为输入条件的月份,此时时间X变为X1,根据本身提供的方法lengthOfMonth就可以直接得到X1所在当月的天数了
代码:(请将JDK升到8)
public static void main(String[] args)System.out.println(countDaysInMonth(Month.MAY));
public static int countDaysInMonth(Month month)
// 获取当前时间
LocalDate now = LocalDate.now();
System.out.println(now);
// 把当前时间的月份修改为输入的月份
LocalDate thisMonthDate = now.withMonth(month.getValue());
System.out.println(thisMonthDate);
return thisMonthDate.lengthOfMonth();
也可以连着写,更美观点
public static int countDaysInMonth(Month month)return LocalDate.now()
.withMonth(month.getValue())
.lengthOfMonth();
非常直观且易懂好用,在Java8里with就代表着修改意思,withMonth那就是修改月份,所以整个代码读下来就变成
获取当前时间A
修改A的月份为输入条件得到时间B
计算B所在月的天数
考虑闰年的计算方式
import java.util.Scanner;
/**
* 求用JAVA计算某年某月的天数?
*/
public class DayTest
public static void main(String[] args)
// 定义年份
int year = -1;
// 定义月份
int month = -1;
// 使用Scanner
Scanner scanner = new Scanner(System.in);
System.out.println("请输入年");
year = scanner.nextInt();
System.out.println("请输入月");
month = scanner.nextInt();
System.out.println(year + "年" + month + "月有" + days(year, month) + "天");
public static int days(int year, int month)
int days = 0;
if (month != 2)
switch (month)
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
days = 31;
break;
case 4:
case 6:
case 9:
case 11:
days = 30;
else
// 闰年
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
days = 29;
else
days = 28;
return days;
参考技术B 思路:java中有没有获取指定月的天数方法不清楚,但是可以自己写一个,首先判断135781012这几个月都是31天,在46911是30天,在判断是否是闰年平年,从而判断2月是28还是29天。 参考技术C static final int MONTH_LENGTH[]
= 31,28,31,30,31,30,31,31,30,31,30,31; // 0-based
static final int LEAP_MONTH_LENGTH[]
= 31,29,31,30,31,30,31,31,30,31,30,31; // 0-based
public int monthLength(int month, int year)
return isLeapYear(year) ? LEAP_MONTH_LENGTH[month] : MONTH_LENGTH[month];
思路: 定义两个数组,分别为平年和闰年的月份天数。 然后根据年份和月份判断
参考技术D // year 年份(四位数)// month 月份(从1开始)
public static int getMonthDays(int year, int month)
if (month == 2)
if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))
return 29;
else
return 28;
else if (month == 4 || month == 6 || month == 9 || month == 11)
return 30;
else
return 31;
判断每个月有多少天
import java.util.Scanner; /* * * * */ public class Demo { public static void main(String[] args) { //提示用户输出年数个月份 Scanner sc = new Scanner(System.in); System.out.println("请输入月数和年数"); int mouth = sc.nextInt(); int year =sc.nextInt(); //判断天数 for(;;){ if(mouth>0&&mouth<13){ switch(mouth){ case 1: case 3: case 5: case 7: case 8: case 10: case 12: System.out.println(year+"年"+mouth+"月"+"有31"); break; case 4: case 6: case 9: case 11: System.out.println(year+"年"+mouth+"月"+"有30天"); break; case 2: if(year%4==0){ System.out.println(year+"年"+mouth+"月"+"有29天"); }else{ System.out.println(year+"年"+mouth+"月"+"有28天"); } break; //default: //System.out.println("你输入的月份有误!请重新输入"); } //跳出循环 break; }else{ System.out.println("你输入的月份有误,请重新输入月份"); mouth =sc.nextInt(); } } } }
以上是关于Java里,如何得到一个月有多少天的主要内容,如果未能解决你的问题,请参考以下文章