Java tutorial
import java.util.Calendar; public class Main { public static void main(String[] args) { Calendar cal = Calendar.getInstance(); // get what the minimal days required in the first week of the year int i = cal.getMinimalDaysInFirstWeek(); // print the result System.out.println("Minimal days required :" + i); } }