Get Date and Time parts separately in Java



To get the time parts separately, use the date-time fields.

To get the date, use the following fields.

Calendar.YEAR
Calendar.MONTH
Calendar.DATE

To get the time, use the following fields.

Calendar.HOUR_OF_DAY
Calendar.HOUR
Calendar.MINUTE
Calendar.SECOND
Calendar.MILLISECOND

The following is an example.

Example

 Live Demo

import java.util.Calendar;
public class Demo {
   public static void main(String[] args) {
      Calendar cal = Calendar.getInstance();
      // current date and time
      System.out.println(cal.getTime().toString());
      // date information
      System.out.println("
Date Information..........");       System.out.println("Year = " + cal.get(Calendar.YEAR));       System.out.println("Month = " + (cal.get(Calendar.MONTH) + 1));       System.out.println("Date = " + cal.get(Calendar.DATE));       // time information       System.out.println("
Time Information..........");       System.out.println("Hour (24 hour format) : " + cal.get(Calendar.HOUR_OF_DAY));       System.out.println("Hour (12 hour format) : " + cal.get(Calendar.HOUR));       System.out.println("Minute : " + cal.get(Calendar.MINUTE));       System.out.println("Second : " + cal.get(Calendar.SECOND));       System.out.println("Millisecond : " + cal.get(Calendar.MILLISECOND));    } }

Output

Mon Nov 19 14:46:29 UTC 2018

Date Information..........
Year = 2018
Month = 11
Date = 19

Time Information..........
Hour (24 hour format) : 14
Hour (12 hour format) : 2
Minute : 46
Second : 29
Millisecond : 762
Samual Sam
Samual Sam

Learning faster. Every day.


Advertisements