MM/DD/YY h:mm:ss 中的日期转换 java 中的格式

我正在尝试使用 4-SEP-2018 获得这个日期 09/03/18 6:30:00 PM,但我得到的是 12/364/17 6:30:00 PM,这是我尝试过的。


public class StockBuySell 


{      


    static String  DATE_FORMAT_UI = "DD-MMM-YYYY";



    public static void main(String args[]) throws Exception {


        DateFormat outputFormat = new SimpleDateFormat("MM/DD/YY h:mm:ss a");

        outputFormat.setTimeZone(TimeZone.getTimeZone("GMT"));

        DateFormat inputFormat = new SimpleDateFormat(DATE_FORMAT_UI);


        String inputText = "4-SEP-2018";

        Date date = inputFormat.parse(inputText);

        String outputText = outputFormat.format(date);

        System.out.println(outputText);


    }

}


大话西游666
浏览 162回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java