BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

Java DateTimeFormatter

By Chaitanya Singh | Filed Under: java

The DateTimeFormatter class in Java is used for parsing dates in different formats. You can use this class to format date in a specified format or you can use the predefined instances of DateTimeFormatter class.

1. Java – DateTimeFormatter to format the date in specified format

In this example, we are formatting the current date in two different formats using the DateTimeFormatter class. I have specified the patter in the ofPattern() method.

To understand the meaning of each symbol along with other possible symbols, refer the chart provided at the end of this guide.

import java.time.LocalDateTime;  
import java.time.format.DateTimeFormatter;  
public class Example {  
  public static void main(String[] args) {  
    LocalDateTime currentDateTime = LocalDateTime.now();  
    
    DateTimeFormatter format1 = DateTimeFormatter.ofPattern("dd/MM/yyyy hh:mm a");  
    String formatDateTime = currentDateTime.format(format1);   
    System.out.println(formatDateTime); 
    
    DateTimeFormatter format2 = DateTimeFormatter.ofPattern("dd-MM-yyyy HH:mm:ss");  
    String formatDateTime2 = currentDateTime.format(format2);   
    System.out.println(formatDateTime2);    
  }  
}

Output:

01/11/2017 07:45 PM
01-11-2017 19:45:40

2. Java – Formatting the date using predefined instances of DateTimeFormatter

import java.time.LocalDateTime;  
import java.time.format.DateTimeFormatter;  
public class Example {  
  public static void main(String[] args) {  
	  LocalDateTime datetime = LocalDateTime.now();
	  DateTimeFormatter dateTimeFormatter = DateTimeFormatter.BASIC_ISO_DATE;
	  String formattedDate = dateTimeFormatter.format(datetime);
	  System.out.println(formattedDate);  
	  
	  DateTimeFormatter dateTimeFormatter2 = DateTimeFormatter.ISO_LOCAL_DATE;
	  String formattedDate2 = dateTimeFormatter2.format(datetime);
	  System.out.println(formattedDate2);
	  
	  DateTimeFormatter dateTimeFormatter3 = DateTimeFormatter.ISO_LOCAL_TIME;
	  String formattedDate3 = dateTimeFormatter3.format(datetime);
	  System.out.println(formattedDate3);
	  
	  DateTimeFormatter dateTimeFormatter4 = DateTimeFormatter.ISO_LOCAL_DATE_TIME;
	  String formattedDate4 = dateTimeFormatter4.format(datetime);
	  System.out.println(formattedDate4);
  }  
}

Output:

20171101
2017-11-01
19:59:02.552
2017-11-01T19:59:02.552

Other Predefined formatters:

DateTimeFormatter – Chart of Symbols which can be used in patterns

DateTimeFormatter Patterns Symbols chart

Reference:

DateTimeFormatter – JavaDoc

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Java Tutorial

Java Introduction

  • Java Index
  • Java Introduction
  • History of Java
  • Features of Java
  • C++ vs Java
  • JDK vs JRE vs JVM
  • JVM - Java Virtual Machine
  • First Java Program
  • Variables
  • Data Types
  • Operators

Java Flow Control

  • Java If-else
  • Java Switch-Case
  • Java For loop
  • Java while loop
  • Java do-while loop
  • Continue statement
  • break statement

Java Arrays

  • Java Arrays

OOPs Concepts

  • OOPs Concepts
  • Constructor
  • Java String
  • Static keyword
  • Inheritance
  • Types of inheritance
  • Aggregation
  • Association
  • Super Keyword
  • Method overloading
  • Method overriding
  • Overloading vs Overriding
  • Polymorphism
  • Types of polymorphism
  • Static and dynamic binding
  • Abstract class and methods
  • Interface
  • Abstract class vs interface
  • Encapsulation
  • Packages
  • Access modifiers
  • Garbage Collection
  • Inner classes
  • Static import
  • Static constructor

Java Exception Handling

  • Exception handling
  • Java try-catch
  • Java throw
  • Java throws
  • Checked and Unchecked Exceptions
  • Jav try catch finally
  • Exception Examples
  • Exception Propagation

Collections Framework

  • Collections in Java
  • Java ArrayList
  • Java LinkedList
  • Java Vector
  • Java HashSet
  • Java LinkedHashSet
  • Java TreeSet
  • Java HashMap
  • Java TreeMap
  • Java LinkedHashMap
  • Java Queue
  • Java PriorityQueue
  • Java Deque
  • Comparable interface
  • Comparator interface
  • Collections Interview Questions

MORE ...

  • Java Scanner Class
  • Java 8 Features
  • Java 9 Features
  • Java Conversion
  • Java Date
  • Java Multithreading
  • Java I/O
  • Java Serialization
  • Java Regex
  • Java AWT
  • Java Swing
  • Java Enum
  • Java Annotations
  • Java main method
  • Java Interview Q

Copyright © 2012 – 2022 BeginnersBook . Privacy Policy . Sitemap