Mega Code Archive

 
Categories / Java Tutorial / Data Type
 

Get the number of days in that month

import java.util.Calendar; public class Main {   public static void main(String[] argv) throws Exception {     Calendar cal = Calendar.getInstance();     int days = cal.getActualMaximum(Calendar.DAY_OF_MONTH); // 28   } }