1. 程式人生 > >獲取指定月份的天數

獲取指定月份的天數

/**      * 獲取某個月的天數      * @param monthyear      * @return      */     public static int getDaysOfMonth(String monthyear) {         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");         try {             Date date = sdf.parse(monthyear);             Calendar calendar = Calendar.getInstance();             calendar.setTime(date);             return calendar.getActualMaximum(Calendar.DAY_OF_MONTH);         } catch (ParseException e) {             e.printStackTrace();             return 0;         }              }