Convert Time to Milliseconds in Java

1. Overview

In this quick tutorial, we’ll illustrate multiple ways of converting time into Unix-epoch milliseconds in Java.

More specifically, we’ll use:

  • Core Java’s java.util.Date and Calendar
  • Java 8’s Date and Time API
  • Joda-Time library

2. Core Java

2.1. Using Date

Firstly, let’s define a millis property holding a random value of milliseconds:

long millis = 1556175797428L; // April 25, 2019 7:03:17.428 UTC

We’ll use this value to initialize our various objects and verify our results.

Next, let’s start with a Date object:

Date date = // implementation details

Now, we’re ready to convert the date into milliseconds by simply invoking the getTime() method:

Assert.assertEquals(millis, date.getTime());

2.2. Using Calendar

Likewise, if we have a Calendar object, we can use the getTimeInMillis() method:

Calendar calendar = // implementation details
Assert.assertEquals(millis, calendar.getTimeInMillis());

3. Java 8 Date Time API

3.1. Using Instant

Simply put, Instant is a point in Java’s epoch timeline.

We can get the current time in milliseconds from the Instant:

java.time.Instant instant = // implementation details
Assert.assertEquals(millis, instant.toEpochMilli());

As a result, the toEpochMilli() method returns the same number of milliseconds as we defined earlier.

3.2. Using LocalDateTime

Similarly, we can use Java 8’s Date and Time API to convert a LocalDateTime into milliseconds:

LocalDateTime localDateTime = // implementation details
ZonedDateTime zdt = ZonedDateTime.of(localDateTime, ZoneId.systemDefault());
Assert.assertEquals(millis, zdt.toInstant().toEpochMilli());

First, we created an instance of the current date. After that, we used the toEpochMilli() method to convert the ZonedDateTime into milliseconds.

As we know, LocalDateTime doesn’t contain information about the time zone. In other words, we can’t get milliseconds directly from LocalDateTime instance.

4. Joda-Time

While Java 8 adds much of Joda-Time’s functionality, we may want to use this option if we are on Java 7 or earlier.

4.1. Using Instant

Firstly, we can obtain the current system milliseconds from the Joda-Time Instant class instance using the getMillis() method:

Instant jodaInstant = // implementation details
Assert.assertEquals(millis, jodaInstant.getMillis());

4.2. Using DateTime

Additionally, if we have a Joda-Time DateTime instance:

DateTime jodaDateTime = // implementation details

Then we can retrieve the milliseconds with the getMillis() method:

Assert.assertEquals(millis, jodaDateTime.getMillis());

5. Conclusion

In conclusion, this article demonstrates how to convert time into milliseconds in Java.

Finally, as always, the complete code for this article is available over on GitHub.

Related posts:

Java Program to Implement Hash Tables Chaining with List Heads
Làm thế nào tạo instance của một class mà không gọi từ khóa new?
Java Program to Implement Binary Search Tree
Java Program to Construct an Expression Tree for an Postfix Expression
Spring Boot Tutorial – Bootstrap a Simple Application
Java Program to Check if a Matrix is Invertible
Receive email by java client
Java Program to Implement the Hill Cypher
Java Program to Perform Cryptography Using Transposition Technique
Guide to the Synchronized Keyword in Java
Java Program to Find Nearest Neighbor Using Linear Search
Java Program to Generate All Subsets of a Given Set in the Lexico Graphic Order
Supplier trong Java 8
Java Program for Topological Sorting in Graphs
Java Program to Represent Linear Equations in Matrix Form
Java Program to Implement Floyd Cycle Algorithm
A Guide to the Java ExecutorService
Lớp Arrarys trong Java (Arrays Utility Class)
Java Program to Implement Self organizing List
Spring Boot - Zuul Proxy Server and Routing
Simple Single Sign-On with Spring Security OAuth2
Java Program to Represent Graph Using Incidence List
Getting Started with Stream Processing with Spring Cloud Data Flow
Beans and Dependency Injection
Remove All Occurrences of a Specific Value from a List
Spring Security with Maven
REST Pagination in Spring
Map Interface trong java
Spring Security Basic Authentication
Java Program to Implement Suffix Tree
Phương thức tham chiếu trong Java 8 – Method References
Java Program to Check Whether it is Weakly Connected or Strongly Connected for a Directed Graph