有时候要对时间进行各方面的操作,这里就记录下最近使用到的对时间操作的代码,简单的代码,以后再去整理,要上班了
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar monthC = Calendar.getInstance();
monthC.set(Calendar.DAY_OF_MONTH, 1);
String monthFirst = sdf.format(monthC.getTime())+" "+"00:00:00";//本月第一天
monthC.set(Calendar.DAY_OF_MONTH, monthC.getActualMaximum(Calendar.DAY_OF_MONTH));
String monthLast = sdf.format(monthC.getTime())+" "+"23:59:59";//本月最后一天