>Java >java지도 시간 >현재 날짜와 시간을 표시하는 Java 프로그램

현재 날짜와 시간을 표시하는 Java 프로그램

WBOY
WBOY앞으로
2023-09-14 22:41:071201검색

현재 날짜와 시간을 표시하는 Java 프로그램

이 글에서는 현재 날짜와 시간을 표시하는 방법을 알아 보겠습니다. Java에는 내장 Date 클래스가 없지만 java.time 패키지를 가져와서 날짜 및 시간 API를 사용할 수 있습니다. 이 패키지에는 많은 날짜 및 시간 클래스가 포함되어 있습니다.

아래는 동일한 데모입니다. -

입력이 -

Run the program

이라고 가정합니다. 원하는 출력은 -

The current date and time is: 2022/03/17 23:43:17

Algorithm

Step 1 - START
Step 2 - Declare an object of LocalDateTime namely date.
Step 3 - Define the values.
Step 4 - Define a date time format using DateTimeFormatter objects
Step 5 - Display the date and time using a specific formats
Step 6 - Stop

예 1

여기서 모든 작업을 "main ”에 바인딩합니다. 기능.

import java.time.format.DateTimeFormatter;
import java.time.LocalDateTime;
public class Demo {
   public static void main(String[] args) {
      System.out.println("The required packages have been imported");
      System.out.println("A LocalDateTime object has been defined");
      DateTimeFormatter date_time = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss");
      LocalDateTime now = LocalDateTime.now();
      System.out.println("\nThe current date and time is: " +date_time.format(now));
   }
}

출력

The required packages have been imported
A LocalDateTime object has been defined

The current date and time is: 2022/03/17 23:43:17

예제 2

여기서 객체 지향 프로그래밍을 보여주는 함수로 작업을 캡슐화합니다.

import java.time.format.DateTimeFormatter;
import java.time.LocalDateTime;
public class Demo {
   static void Date_time(DateTimeFormatter date_time){
      LocalDateTime now = LocalDateTime.now();
      System.out.println("\nThe current date and time is: " +date_time.format(now));
   }
   public static void main(String[] args) {
      System.out.println("The required packages have been imported");
      System.out.println("A LocalDateTime object has been defined");
      DateTimeFormatter date_time = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss");
      Date_time(date_time);
   }
}

출력

The required packages have been imported
A LocalDateTime object has been defined

The current date and time is: 2022/03/29 08:55:28

위 내용은 현재 날짜와 시간을 표시하는 Java 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제