Как да получа текущата дата и час в Java? В този урок ще разгледаме три различни метода в Java 8.
Класовете, използвани за показване на датата и часа, са LocalDate
, LocalTime
, LocalDateTime
.
LocalDate
class се използва за представяне на дата.
GetCurrentDate.java
import java.time.LocalDate; public class GetCurrentDate {
public static void main(String[] args) {
LocalDate now = LocalDate.now();
System.out.println(now.toString());
} }
Изход:
2020-02-07
Можем да използваме DateTimeFormatter
клас, за да форматирате показването на датата. Например за показване на текущата дата във формата yyyy/mm/dd
ние използваме:
import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class GetCurrentDate {
public static void main(String[] args) {
LocalDate now = LocalDate.now();
System.out.println(now.format(DateTimeFormatter.ofPattern('yyyy/MM/dd')));
} }
Изход:
2020/02/07
LocalDate
class има други полезни методи, които можем да използваме, за да получим повече подробности за текущата дата като: getDayOfWeek()
, getDayOfMonth()
, getDayOfYear()
import java.time.LocalDate; public class GetCurrentDate {
public static void main(String[] args) {
LocalDate now = LocalDate.now();
System.out.println('Today's date: ' + now.toString());
System.out.println('Day of week: ' + now.getDayOfWeek().toString());
System.out.println('Day of month: ' + now.getDayOfMonth());
System.out.println('Day of year: ' + now.getDayOfYear());
} }
Изход:
Today's date: 2020-02-07 Day of week: FRIDAY Day of month: 7 Day of year: 38
LocalTime
клас представлява време.
GetCurrentTime.java
import java.time.LocalTime; import java.time.format.DateTimeFormatter; public class GetCurrentTime {
public static void main(String[] args) {
LocalTime now = LocalTime.now();
System.out.println('Time now: ' + now.toString());
System.out.println('Formatted time: ' + now.format(DateTimeFormatter.ofPattern('HH:mm:ss')));
} }
Забележка:Можем да използваме DateTimeFormatter за да форматирате дисплея на часа.Изход:
Time now: 00:02:53.313 Formatted time: 00:02:53
LocalTime
class също има някои удобни полезни методи, за да получите повече подробности за текущото време:
import java.time.LocalTime; public class GetCurrentTime {
public static void main(String[] args) {
LocalTime now = LocalTime.now();
System.out.println('Current hour: ' + now.getHour());
System.out.println('Current minute: ' + now.getMinute());
System.out.println('Current second: ' + now.getSecond());
} }
Изход:
Current hour: 0 Current minute: 10 Current second: 16
За да получите текущата дата и време, можем да използваме LocalDateTime
клас
package io.devqa.tutorials; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class GetCurrentTime {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
System.out.println(now.format(DateTimeFormatter.ofPattern('yyyy/MM/dd - HH:mm:ss')));
System.out.println('Day of month: ' + now.getDayOfMonth());
System.out.println('Current hour: ' + now.getHour());
} }
Изход:
2020/02/08 - 00:18:12 Day of month: 8 Current hour: 0