Android examples for java.util:Year
get Month Day Count by year and month
import android.annotation.SuppressLint; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main{ public static int getMonthDays(int year, int month) { if (month > 12) { month = 1;/*from ww w . j a va 2 s . c o m*/ year += 1; } else if (month < 1) { month = 12; year -= 1; } int[] arr = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; int days = 0; if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { arr[1] = 29; } try { days = arr[month - 1]; } catch (Exception e) { e.getStackTrace(); } return days; } }