当前位置:   article > 正文

java对于时间的分配(今天,昨天,明天,后天)_后端 根据 创建日期分成今天 明天

后端 根据 创建日期分成今天 明天

java对于时间的分配(今天,昨天,明天,后天

SimpleDateFormat sdf = new SimpleDateFormat(“yyyy-MM-dd”); 格式化时间格式

new Date() 获取当前的时间

Calendar calendar = new GregorianCalendar();
calendar.setTime(new Date());
calendar.add(calendar.DATE,-1);
String yesterday = sdf.format(calendar.getTime());

先把当前时间放在上面,-1就是昨天的现在,1就是明天现在,2就是后天的现在

在这里插入图片描述

今天

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        System.out.println("今天:"+sdf.format(new Date()));
  • 1
  • 2

昨天

        //获取昨天日期
        Calendar calendar = new GregorianCalendar();
        calendar.setTime(new Date());
        calendar.add(calendar.DATE,-1);
        String yesterday = sdf.format(calendar.getTime());
        System.out.println("昨天:"+yesterday);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

明天

        Calendar calendar2 = new GregorianCalendar();
        calendar2.setTime(new Date());
        calendar2.add(calendar2.DATE,1);
        System.out.println("明天:"+sdf.format(calendar2.getTime()));
"明天:"+sdf.format(calendar2.getTime()));
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/260583
推荐阅读
相关标签
  

闽ICP备14008679号