This question already has answers here:
Java Date year calculation is off by year for two days
                                
                                    (5个答案)
                                
                        
                2年前关闭。
            
        

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

public class myTests {

    public static void main(String[] args) {
        DateFormat formatter = new SimpleDateFormat("YYYY-MMM-dd", Locale.US);
        try {
            Date sortingDate = (Date)formatter.parse("2017-Jul-13");
            System.out.println("Sorted Date is:"+sortingDate);

        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

}


结果是


  排序日期是:2017年1月1日星期日00:00:00 PST


为什么不显示我给的日期2017年7月13日
你能告诉我吗?

谢谢
安倍

最佳答案

大写的Y是周年。您需要的是小写字母y =年。

因此,将new SimpleDateFormat("YYYY-MMM-dd", Locale.US);更改为new SimpleDateFormat("yyyy-MMM-dd", Locale.US);,您应该得到正确的结果。

有关更多信息,请参见javadoc of SimpleDateFormat

如果您使用的是Java8,则应更改为DateTimeFormatter和新的DateTime API

关于java - SimpleDateFormat没有提供正确的日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45078814/

10-14 11:24