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

java中日期格式化的大坑

程序员文章站 2022-06-25 14:58:56
前言我们都知道在java中进行日期格式化使用simpledateformat。通过格式 yyyy-mm-dd 等来进行格式化,但是你知道其中微小的坑吗?yyyy 和 yyyy示例代码 @test...

前言

我们都知道在java中进行日期格式化使用simpledateformat。通过格式 yyyy-mm-dd 等来进行格式化,但是你知道其中微小的坑吗?

yyyy 和 yyyy

示例代码

  @test
  public void testweekbasedyear() {
    calendar calendar = calendar.getinstance();
    // 2019-12-31
    calendar.set(2019, calendar.december, 31);
    date strdate1 = calendar.gettime();
    // 2020-01-01
    calendar.set(2020, calendar.january, 1);
    date strdate2 = calendar.gettime();
    // 大写 yyyy
    simpledateformat formatyyyy = new simpledateformat("yyyy/mm/dd");
    system.out.println("2019-12-31 转 yyyy/mm/dd 格式: " + formatyyyy.format(strdate1));
    system.out.println("2020-01-01 转 yyyy/mm/dd 格式: " + formatyyyy.format(strdate2));
    // 小写 yyyy
    simpledateformat formatyyyy = new simpledateformat("yyyy/mm/dd");
    system.out.println("2019-12-31 转 yyyy/mm/dd 格式: " + formatyyyy.format(strdate1));
    system.out.println("2020-01-01 转 yyyy/mm/dd 格式: " + formatyyyy.format(strdate2));
  }

输出的结果

2019-12-31 转 yyyy/mm/dd 格式: 2020/12/31
2020-01-01 转 yyyy/mm/dd 格式: 2020/01/01
2019-12-31 转 yyyy/mm/dd 格式: 2019/12/31
2020-01-01 转 yyyy/mm/dd 格式: 2020/01/01

卧槽?2019变成2020了?

yyyy 是怎么做到的呢

java's datetimeformatter pattern "yyyy" gives you the week-based-year, (by default, iso-8601 standard) the year of the thursday of that week.
下面就是用yyyy格式化代码

12/29/2019 将会格式化到2019年 这一周还属于2019年
12/30/2019 将会格式化到2020年 这一周已经属于2020年
看字说话yyyy,week-based year 是 iso 8601 规定的。
2019-12-31号这一天,按周算年份已经属于2020年了,格式化之后就变成2020年,后面的月份日期不变。

dd和dd

示例代码

 private static void tryit(int y, int m, int d, string pat) {
    datetimeformatter fmt = datetimeformatter.ofpattern(pat);
    localdate     dat = localdate.of(y,m,d);
    string      str = fmt.format(dat);
    system.out.printf("y=%04d m=%02d d=%02d " +
      "formatted with " +
      "\"%s\" -> %s\n",y,m,d,pat,str);
  }
  public static void main(string[] args){
    tryit(2020,01,20,"mm/dd/yyyy");
    tryit(2020,01,21,"dd/mm/yyyy");
    tryit(2020,01,22,"yyyy-mm-dd");
    tryit(2020,03,17,"mm/dd/yyyy");
    tryit(2020,03,18,"dd/mm/yyyy");
    tryit(2020,03,19,"yyyy-mm-dd");
  }

输出结果

y=2020 m=01 d=20 formatted with "mm/dd/yyyy" -> 01/20/2020
y=2020 m=01 d=21 formatted with "dd/mm/yyyy" -> 21/01/2020
y=2020 m=01 d=22 formatted with "yyyy-mm-dd" -> 2020-01-22
y=2020 m=03 d=17 formatted with "mm/dd/yyyy" -> 03/77/2020
y=2020 m=03 d=18 formatted with "dd/mm/yyyy" -> 78/03/2020
y=2020 m=03 d=19 formatted with "yyyy-mm-dd" -> 2020-03-79

这里的大写的dd代表的是处于这一年中那一天,不是处于这个月的那一天,但是dd就没有问题。

结论

格式化日期一定要选用 yyyy-mm-dd哦!

到此这篇关于java中日期格式化的大坑的文章就介绍到这了,更多相关java 日期格式化内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!