Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java เพื่อแสดงวันที่ของปีปฏิทินในรูปแบบต่างๆ


ในบทความนี้ เราจะเข้าใจวิธีการแสดงวันที่ของปีปฏิทินในรูปแบบต่างๆ Java ไม่มีคลาส Date ในตัว แต่เราสามารถนำเข้าแพ็คเกจ java.time เพื่อทำงานกับ thedate and time API แพ็คเกจนี้รวมคลาสวันและเวลามากมาย

ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -

สมมติว่าข้อมูลที่เราป้อนคือ

Run the program

ผลลัพธ์ที่ต้องการจะเป็น

The first date format is:2022-03-17T23:37:37.623304800
The second date format is:17/03/2022
The third date format is:Thursday, 17 Mar 2022

อัลกอริทึม

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

ตัวอย่างที่ 1

ที่นี่ เราเชื่อมโยงการดำเนินการทั้งหมดเข้าด้วยกันภายใต้ฟังก์ชัน 'หลัก'

import java.time.*;
import java.time.format.DateTimeFormatter;
public class Demo {
   public static void main(String[] args){
      System.out.println("The required packages have been imported");
      LocalDateTime date = LocalDateTime.now();
      System.out.println("A LocalDateTime object has been defined");
      System.out.println("\nThe first date format is:" +date);
      DateTimeFormatter date_format_1 = DateTimeFormatter.ofPattern("dd/MM/yyyy");
      String formattedDate_1 = date.format(date_format_1);
      System.out.println("\nThe second date format is:" +formattedDate_1);
      DateTimeFormatter date_format_2 = DateTimeFormatter.ofPattern("EEEE, dd MMM yyyy");
      String formattedDate_2 = date.format(date_format_2);
      System.out.println("\nThe third date format is:" +formattedDate_2);
   }
}

ผลลัพธ์

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

The first date format is:2022-03-29T08:53:19.809

The second date format is:29/03/2022

The third date format is:Tuesday, 29 Mar 2022

ตัวอย่างที่ 2

ในที่นี้ เราสรุปการดำเนินการเป็นฟังก์ชันที่แสดงการเขียนโปรแกรมเชิงวัตถุ

import java.time.*;
import java.time.format.DateTimeFormatter;
public class Demo {
   static void print_date_format(LocalDateTime date){
      DateTimeFormatter date_format_1 = DateTimeFormatter.ofPattern("dd/MM/yyyy");
      String formattedDate_1 = date.format(date_format_1);
      System.out.println("\nThe second date format is:" +formattedDate_1);
      DateTimeFormatter date_format_2 = DateTimeFormatter.ofPattern("EEEE, dd MMM yyyy");
      String formattedDate_2 = date.format(date_format_2);
      System.out.println("\nThe third date format is:" +formattedDate_2);
   }
   public static void main(String[] args){
      System.out.println("The required packages have been imported");
      LocalDateTime date = LocalDateTime.now();
      System.out.println("A LocalDateTime object has been defined");
      System.out.println("\nThe first date format is:" +date);
      print_date_format(date);
   }
}

ผลลัพธ์

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

The first date format is:2022-03-29T08:53:58.155

The second date format is:29/03/2022

The third date format is:Tuesday, 29 Mar 2022