Here you can find the source of getTotalWeekOfYear(int year)
public static int getTotalWeekOfYear(int year)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; public class Main { public static int getTotalWeekOfYear(int year) { Calendar c = Calendar.getInstance(); return c.getActualMaximum(Calendar.WEEK_OF_YEAR); }//ww w . jav a 2s .c o m }