14
在给定的字符串日期中获取月份的最后一天
我的输入字符串日期如下: String date = "1/13/2012"; 我得到的月份如下: SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy"); Date convertedDate = dateFormat.parse(date); String month = new SimpleDateFormat("MM").format(convertedDate); 但是,如何获取给定String日期中月份的最后一个日历日? 例如:对于字符串"1/13/2012",输出必须为"1/31/2012"。