真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中如何使用日期操作類

本篇文章給大家分享的是有關(guān)Java中如何使用日期操作類,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)建站是一家企業(yè)級云計算解決方案提供商,超15年IDC數(shù)據(jù)中心運營經(jīng)驗。主營GPU顯卡服務器,站群服務器,遂寧聯(lián)通機房,海外高防服務器,成都機柜租用,動態(tài)撥號VPS,海外云手機,海外云服務器,海外服務器租用托管等。

一 取出當前日期時間

1 代碼

import java.time.*;public class GetDatetime{  public static void main(String[] args)  {    // 創(chuàng)建時間對象,獲取當前時間    LocalDateTime timePoint = LocalDateTime.now( ); // 當前時間    System.out.println("--當前時間----");    System.out.println(timePoint);    System.out.println("--獲取時間的各個部分----");    System.out.println(timePoint.toLocalDate( ));    System.out.println(timePoint.getMonth( ));    System.out.println(timePoint.getDayOfMonth( ));    System.out.println(timePoint.getSecond( ));  }}

2 運行

--當前時間----2019-07-06T08:10:31.458--獲取時間的各個部分----2019-07-06JULY631

二 將時間對象轉(zhuǎn)化為字符串

1 代碼

import java.time.*;import java.time.format.*;public class DateFormatDemo{  public static void main(String[] args)  {    //獲取當前時間    LocalDate locDate = LocalDate.now();    //指定格式化規(guī)則    DateTimeFormatter dateFmt1 = DateTimeFormatter.ofPattern("dd/MM/uuuu");    //將當前時間格式化    String str1 = locDate.format(dateFmt1);    System.out.println("時間格式1 : " + str1);    DateTimeFormatter dateFmt2 = DateTimeFormatter.ofPattern("uuuu年MM月dd日");    //將當前時間格式化    String str2 = locDate.format(dateFmt2);    System.out.println("時間格式2 : " + str2);  }}

2 運行

時間格式1 : 06/07/2019時間格式2 : 2019年07月06日

以上就是Java中如何使用日期操作類,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文名稱:Java中如何使用日期操作類
本文來源:http://weahome.cn/article/psiogh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部