java - Java 中的工作日查找器

标签 java date

我正在做的项目包括:'编写一个程序,提示输入日期(月、日、年)并报告该日期是星期几。有可能 知道 1601 年 1 月 1 日是星期一很有帮助。这是“Building Java Programs - A Back to Basics Approach, 2nd Edition”的练习,这本书是我买来自学 Java 的。非常感谢任何反馈,但我确实要求你解释为什么你会以另一种/某种方式做某事。谢谢!

所以,我的问题是,虽然对于接近 1600 年的日期,它给出了正确的日期(我相信),但最近几天情况并非如此,它们有三天的偏移量(至少我的那些检查)。为什么会发生这种情况,我该如何解决?谢谢!

我的代码:

// finds the day of the week of the given date
public static String dayFinder(int month, int day, int year) {
    // handle invalid input
    if (month > 12 || month < 1 || day > 31 || day < 1) {
        throw new IllegalArgumentException("Month must be between "
                + "1 and 12 and Day must be between 1 and 31.");
    }

    // convert to "absolute" day, covering day and month
    int absoluteDay = monthToDay(month, day, year);

    // convert year to days and add to "absolute" day
    absoluteDay += yearToDay(year);

    if (absoluteDay % 7 == 1) {
        return "Monday";
    } else if (absoluteDay % 7 == 2) {
        return "Tuesday";
    } else if (absoluteDay % 7 == 3) {
        return "Wednesday";
    } else if (absoluteDay % 7 == 4) {
        return "Thursday";
    } else if (absoluteDay % 7 == 5) {
        return "Friday";
    } else if (absoluteDay % 7 == 6) {
        return "Saturday";
    } else { // absoluteDay % 7 == 0
        return "Sunday";
    }
}

// calculates the number of days present in a given
// date since the beginning of the year
public static int monthToDay(int month, int day, int year) {

    // convert to "absolute" day
    int absoluteDay = 0, daysTo31 = 0;

    // iterate through months
    for (int i = 0, loopMonth = month; i < month; i++) {
        if (loopMonth == 1 || loopMonth == 3 || loopMonth == 5 
                || loopMonth == 7 || loopMonth == 8 || loopMonth == 10
                || loopMonth == 12) {
            absoluteDay += 31;
            daysTo31 = 0;
        } else if (loopMonth == 2) {
            if (year % 4 != 0) {
                absoluteDay += 28;
                daysTo31 = 3;
            } else { // leap year
                absoluteDay += 29;
                daysTo31 = 2;
            }
        } else { // month = 4, 6, 9 or 10
            absoluteDay += 30;
            daysTo31 = 1;
        }
        loopMonth--;
    }

    // adjust to specific day
    absoluteDay -= (31 - day - daysTo31);       
    return absoluteDay;
}

// calculates the number of days between 
// (the beginning of) the given year and
// (the beginning of) the reference year 1601
public static int yearToDay(int year) {

    // convert to "absolute" day
    int absoluteDay = 0;
    year -= 1601; 

    // iterate through years
    for (int i = 0, loopYear = year; i < year; i++) {
        if (loopYear % 4 != 0) {
            absoluteDay += 365;
        } else { // leap year
            absoluteDay += 366;
        }
        loopYear--;
    }

    return absoluteDay;
} 

//1604 年 (MDCIV) 是星期四开始的闰年

最佳答案

您的问题可能与闰年有关。

由于维基百科:

除了能被 100 整除的年份外,所有能被 4 整除的年份都是闰年;能被 400 整除的世纪年仍然是闰年。例如,1900 年不是闰年; 2000 年是闰年。 [link]

这就是为什么你有太多三天(1700、1800、1900)的原因。

关于java - Java 中的工作日查找器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20340648/

相关文章:

java - 如何在 Scala 中对 csv 值列表中的值求和?

MySQL 数据类型 - 与 DATETIME 条目相比,分别存储 DATE 类型和 TIME 类型是否可以为每条记录节省 2 个字节?

linux - 在我的服务器上更改日期时间并在测试后将其还原

java - BigInteger 类型的方法 multiply(long) 不可见

java - 使用代码获取黄色错误/警告

java - 如何通过减少 "if"语句的数量来改进这个简单的代码?

java - 在哪里应用ApplicationContextAware

R Lubridate 在给定两位数的年份时返回不需要的世纪

linux - 获取具有最新日期名称的文件夹

php - 计算两个日期之间的天数