您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何在Java中使用日期操作類,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
一 取出當前日期時間
1 代碼
import java.time.*; public class GetDatetime { public static void main(String[] args) { // 創建時間對象,獲取當前時間 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-06
JULY
6
31
二 將時間對象轉化為字符串
1 代碼
import java.time.*; import java.time.format.*; public class DateFormatDemo { public static void main(String[] args) { //獲取當前時間 LocalDate locDate = LocalDate.now(); //指定格式化規則 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中使用日期操作類就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。