java中形如yyyy-MM-dd'T'HH:mm:ss.SSSZ 轉化成各種格式的問題

來源:互聯網
上載者:User

yyyy-MM-dd’T’HH:mm:ss.SSSZ

後面的三個SSS指的是毫秒,Z代表的時區,中間的T代表可替換的任一字元。

下面看例子:
例子一:

@Test    public void testTime() throws ParseException{       Date date = new Date();        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");       SimpleDateFormat df1 = new SimpleDateFormat("yyyy-MM-dd'測試'HH:mm:ss.SSSZ");        String str = df.format(date);       String str1 = df1.format(date);            System.out.println(str);       System.out.println(str1);         }

測試結果

2017-06-08T10:41:06.261+08002017-06-08測試10:41:06.261+0800

例子二:

將2017-05-18T10:26:10.488Z轉化為yyyy-MM-dd HH:mm:ss或者yyyyMMddHHmmss的格式

@Test    public void testTime1() throws ParseException{       String dateStr = "2017-05-18T10:26:10.488Z";       SimpleDateFormat dff = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS",Locale.ENGLISH);//輸入的被轉化的時間格式       SimpleDateFormat df1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//需要轉化成的時間格式       SimpleDateFormat df2 = new SimpleDateFormat("yyyyMMddHHmmss");       Date date1 = dff.parse(dateStr);            String str1 = df1.format(date1);       String str2 = df2.format(date1);       System.out.println("str1 is "+str1);       System.out.println("str2 is "+str2);    }

運行結果:

str1 is 2017-05-18 10:26:10str2 is 20170518102610

以上均親測: 童叟無欺。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.