Java 程序以不同国家/地区的格式显示时间
javacampus interviewserver side programmingprogramming
在本文中,我们将了解如何以不同国家/地区的格式显示时间。Java 没有内置的 Date 类,但我们可以导入 java.time 包来使用日期和时间 API。该包包含许多日期和时间类。
下面是相同的演示 −
假设我们的输入是 −
Run the program
期望的输出将是 −
The England Format is: Friday, 18 March 2022 The Italian Format is: venerdì, 18 marzo 2022
算法
步骤 1 - 开始 步骤 2 - 声明一个 LocalDateTime 对象,即日期。 步骤 3 - 定义值。 步骤 4 - 使用 DateTimeFormatter 对象定义不同的日期时间格式。 步骤 5 - 显示不同国家/地区的不同日期时间格式。 第 6 步 - 停止
示例 1
在这里,我们将所有操作绑定在‘main’函数下。
import java.text.DateFormat; import java.util.*; public class Demo { public static void main(String[] args) throws Exception{ System.out.println("The required packages have been imported"); Date date_time = new Date(); Locale England_time = new Locale("en", "ch"); DateFormat de = DateFormat.getDateInstance(DateFormat.FULL, England_time); System.out.println("\nThe England Format is: " + de.format(date_time)); Locale Italy_time = new Locale("it", "ch"); DateFormat di = DateFormat.getDateInstance(DateFormat.FULL, Italy_time); System.out.println("The Italian Format is: " + di.format(date_time)); } }
输出
The required packages have been imported The England Format is: Tuesday, March 29, 2022 The Italian Format is: marted?, 29. marzo 2022
示例 2
在这里,我们将操作封装成展现面向对象编程的函数。
import java.text.DateFormat; import java.util.*; public class Demo { static void Time_formats(Date date_time ){ Locale England_time = new Locale("en", "ch"); DateFormat de = DateFormat.getDateInstance(DateFormat.FULL, England_time); System.out.println("\nThe England Format is: " + de.format(date_time)); Locale Italy_time = new Locale("it", "ch"); DateFormat di = DateFormat.getDateInstance(DateFormat.FULL, Italy_time); System.out.println("The Italian Format is: " + di.format(date_time)); } public static void main(String[] args) throws Exception{ System.out.println("The required packages have been imported"); Date date_time = new Date(); System.out.println("A date object has been defined"); Time_formats(date_time); } }
输出
The required packages have been imported The England Format is: Tuesday, March 29, 2022 The Italian Format is: marted?, 29. marzo 2022