Here you can find the source of getDaysInYear(int year)
public static int getDaysInYear(int year)
//package com.java2s; public class Main { public static int getDaysInYear(int year) { if (year > 1582) { if (year % 400 == 0) return 366; else if (year % 100 == 0) return 365; else if (year % 4 == 0) return 366; else//from ww w . j a v a 2 s . c o m return 365; } else if (year == 1582) { return 355; } else if (year > 4) { if (year % 4 == 0) return 366; else return 365; } else if (year > 0) { return 365; } else { return 0; } } }