devxlogo

Formatting Global Dates in Java

Formatting Global Dates in Java

Dates are an important part of all record keeping activities. Due to globalization, it is important to understand how each country represents the date. Some countries start the date with Year, some with Month and some of them interchange Month and Date place holders. Formatting (using ofPattern() method) is a powerful utility that easily helps users overcome this problem.

import java.time.LocalDateTime;import java.time.format.DateTimeFormatter;public class TimeFormats {public static void main(String args[]) { LocalDateTime localDateTime = LocalDateTime.now(); System.out.println("Default format: " + localDateTime); //Formatting DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("dd-MMM-yyyy HH:mm:ss"); String formattedDate = localDateTime.format(dateTimeFormatter); System.out.println("After formatting (dd-MMM-yyyy HH:mm:ss): " + formattedDate); //Additonal Formatting dateTimeFormatter = DateTimeFormatter.ofPattern("E, MMM dd yyyy"); formattedDate = localDateTime.format(dateTimeFormatter); System.out.println("After formatting (E, MMM dd yyyy): " + formattedDate); } }

Expected output:

[root@mypc]# java TimeFormatsDefault format: 2018-11-27T16:40:07.893After formatting (dd-MMM-yyyy HH:mm:ss): 27-Nov-2018 16:40:07After formatting (E, MMM dd yyyy): Tue, Nov 27 2018
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist