摘要:
取得指定月份的第一天与取得指定月份的最后一天 /** * 取得指定月份的第一天 * * @param strdate String * @return String */ public String getMonthBegin(String strdate) { java.util.Date date = parseFormatDate(strdate); return formatDateByFormat(date,"yyyy-MM") + "-01"; } /** * 取得指定月份的最后一天 * * @param strdate String * @ 阅读全文
posted @ 2013-09-01 21:25
predy
阅读(327)
评论(0)
推荐(0)