The Java Calendar getTimeInMillis() method returns this Calendar's time in milliseconds.
DeclarationFollowing is the declaration for java.util.Calendar.getTimeInMillis() method
public long getTimeInMillis()Parameters
NA
Return ValueThe method returns the current time as UTC milliseconds.
ExceptionNA
Getting Time in Milliseconds from a Current Dated Calendar Instance ExampleThe following example shows the usage of Java Calendar getTimeInMillis() method. We're creating an instance of a Calendar of current date using getInstance() method and printing the time using getTimeInMillis() method.
package com.tutorialspoint; import java.util.Calendar; public class CalendarDemo { public static void main(String[] args) { // create a calendar Calendar cal = Calendar.getInstance(); // print the time System.out.print("Time in ms " + cal.getTimeInMillis()); } }Output
Let us compile and run the above program, this will produce the following result −
Time in ms 1664202061042Getting Time in Milliseconds from a Current Dated GregorianCalendar Instance Example
The following example shows the usage of Java Calendar getTimeInMillis() method. We're creating an instance of a Calendar of current date using GregorianCalendar() method and printing the time using getTimeInMillis() method.
package com.tutorialspoint; import java.util.Calendar; import java.util.GregorianCalendar; public class CalendarDemo { public static void main(String[] args) { // create a calendar Calendar cal = new GregorianCalendar(); // print the time System.out.print("Time in ms " + cal.getTimeInMillis()); } }Output
Let us compile and run the above program, this will produce the following result −
Time in ms 1664202083057Getting Time in Milliseconds from a Given Dated GregorianCalendar Instance Example
The following example shows the usage of Java Calendar getTimeInMillis() method. We're creating an instance of a Calendar of a particular date using GregorianCalendar() method and printing the time using getTimeInMillis() method.
package com.tutorialspoint; import java.util.Calendar; import java.util.GregorianCalendar; public class CalendarDemo { public static void main(String[] args) { // create a calendar Calendar cal = new GregorianCalendar(2025,8,26); // print the time System.out.print("Time in ms " + cal.getTimeInMillis()); } }Output
Let us compile and run the above program, this will produce the following result −
Time in ms 1758825000000
java_util_calendar.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4