關於Java時間格式的解惑

來源:互聯網
上載者:User

標籤:java date() 時間類型

        在Java中, Date() 是沒有類型一說的,我們所說的時間格式、時間類型都是指轉化為字串之後的格式,並不是指Date()的格式;

    

  public void testDate() {      //定義時間,其格式預設為:Tue Jun 09 11:11:30 GMT+08:00 2015這種樣式      Date date = new Date();          //輸出:Tue Jun 09 11:11:30 GMT+08:00 2015          System.out.println(date);       //定義時間轉換格式      DateFormat dfm =new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");      //將時間轉換成指定格式的字串          String time=dfm.format(date);           //輸出轉變格式之後的字串:2015-06-09 11:35:52          System.out.println(time);       try {           /*將格式為"yyyy-MM-dd hh:mm:ss"轉換成時間時,            *  date顯示仍為Tue Jun 09 11:11:30 GMT+08:00 2015這種樣式            */           Date dm=dfm.parse(time.toString());               //驗證一下,輸出為:Tue Jun 09 11:35:52 GMT+08:00 2015               System.out.println(dm);               //轉換成字串輸出為:Tue Jun 09 11:35:52 GMT+08:00 2015               System.out.println(dm.toString());      } catch (ParseException e) {           e.printStackTrace();      } }  後台輸出結果為:        Tue Jun 09 11:11:30 GMT+08:00 2015        2015-06-09 11:36:48        Tue Jun 09 11:36:48 GMT+08:00 2015        Tue Jun 09 11:36:48 GMT+08:00 2015

本文出自 “9891958” 部落格,請務必保留此出處http://9901958.blog.51cto.com/9891958/1659992

關於Java時間格式的解惑

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.