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