Here you can find the source of daysInYear(int year)
public static int daysInYear(int year)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static int daysInYear(int year) { Calendar c = Calendar.getInstance(); c.set(Calendar.YEAR, year); return c.getActualMaximum(Calendar.DAY_OF_YEAR); }//from w ww .j a v a 2 s . c o m }