Here you can find the source of numberOfDaysInMonth(Calendar cal)
private static int numberOfDaysInMonth(Calendar cal)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { private static int numberOfDaysInMonth(Calendar cal) { cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); cal.add(Calendar.MONTH, 1); cal.add(Calendar.DAY_OF_MONTH, -1); return cal.get(Calendar.DAY_OF_MONTH); }/*from w w w . j a v a 2s .c om*/ }