Java Program For Date And Time

Chapter: Miscellaneous Last Updated: 24-03-2023 14:32:25 UTC

Program:

            /* ............... START ............... */
                
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

public class DateTimeExample {
    public static void main(String[] args) {
        LocalDateTime now = LocalDateTime.now();
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MM-yyyy HH:mm:ss");
        String formattedDateTime = now.format(formatter);
        System.out.println("Current date and time: " + formattedDateTime);
    }
}

                /* ............... END ............... */
        

Output

Current date and time: 24-03-2023 11:25:30

Notes:

  • The Java program provided above is a simple example of how to display the current date and time in a specific format.
  • We first import two classes, LocalDateTime and DateTimeFormatter, from the java.time package. These classes provide the functionality we need to work with dates and times in Java.
  • We then create a new class called DateTimeExample that contains a main method, which is the entry point for the program.
  • Inside the main method, we create a LocalDateTime object called now using the now() method. This object represents the current date and time.
  • We then create a DateTimeFormatter object called formatter using the ofPattern() method. This object specifies the format we want to use to display the date and time. In this case, the format is "dd-MM-yyyy HH:mm:ss", which means we want to display the day, month, year, hours, minutes, and seconds of the date and time.
  • Next, we use the format() method of the now object to format the date and time using the formatter object. This returns a String object representing the formatted date and time.
  • Finally, we print out the formatted date and time using the System.out.println() method. This displays the date and time on the console in the format we specified earlier.
  • So in summary, the program gets the current date and time, formats it in a specific way using a DateTimeFormatter object, and then prints out the formatted date and time using System.out.println().

Tags

#Java Program For Date And Time # Date Java example, #Java Date, #Time in Java, #Java get current date

Similar Programs Chapter Last Updated
Find Unique Elements In List Java Miscellaneous 07-10-2023
Java Program To Implement A Custom equals() and hashcode() In Java Miscellaneous 07-10-2023
Java Program To Find The Intersection Of Two HashSets Miscellaneous 07-10-2023
Java Program To Remove Duplicate Elements From List Miscellaneous 07-10-2023
Java program to parse a date and time string from a log file and store it in a database Miscellaneous 19-09-2023
Java Program To Print All The Dates In A Month That Fall On A Weekend Miscellaneous 19-09-2023
Java Program To Find Number Of Working Days In A Month Miscellaneous 19-09-2023
Java Program To Calculate Age From Year Of Birth Miscellaneous 16-09-2023
How To Check If Two Strings Are Anagrams In Java Miscellaneous 22-08-2023
Java Program To Make A Snake Game Miscellaneous 15-08-2023
Java Program To Find Repeated Characters Of String Miscellaneous 15-08-2023
String To Array In Java Miscellaneous 11-08-2023
Java Program To Convert Date To String Miscellaneous 11-08-2023
Java Program To Convert String To Date Object Miscellaneous 11-08-2023
Java Program To Find Number Of Days In A Month Miscellaneous 11-08-2023
Java Program To Print First And Last Day Of Month Miscellaneous 11-08-2023
Java Program To Find Leap Year Between Two Dates Miscellaneous 11-08-2023
Java Code To Find Difference Between Two Dates In Years Months And Days Miscellaneous 11-08-2023
Java program to calculate age from year of birth Miscellaneous 29-06-2023
Swap Two Numbers Without Using Third Variable In Java Miscellaneous 02-06-2023
Java Program To Find The Average Of An Array Of Numbers Miscellaneous 02-06-2023
How Do You Find The Factorial Of A Number In Java Miscellaneous 02-06-2023
Java Program That Takes Two Numbers As Input And Prints Their Sum Miscellaneous 27-05-2023
How To Get The Length Of An Array In Java Miscellaneous 27-05-2023
Java Add Element To List Example Miscellaneous 19-05-2023
Java Program To Square All Items In List Miscellaneous 17-05-2023
Java Program To Merge Two Lists Miscellaneous 17-05-2023
How To Reverse A List In Java Miscellaneous 17-05-2023
Java Program To Find Unique Elements In An Array Miscellaneous 14-05-2023
Java Program To List All Elements In List Miscellaneous 30-04-2023

1 2