java获取当月最后一天
程序员文章站
2022-03-26 19:21:42
...
/**
* 当月最后一天
* @param timeFlag 是否带时分秒, true是
* @return
*/
public static String getLastDay(boolean timeFlag) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar = Calendar.getInstance();
Date theDate = calendar.getTime();
String s = df.format(theDate);
StringBuffer str = new StringBuffer().append(s);
if(timeFlag){
str.append(" 23:59:59");
}
return str.toString();
}
上一篇: Spring-boot学习之报错集锦
下一篇: JAVA开发常见错误汇总(不定期更新)