欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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();
}
相关标签: java