How To Get Current Timestamp In Java?
In this article, we will see how to get the current timestamp in Java.
To get the current timestamp in Java, we can use java.time.Instant
from Java 8 and java.sql.Timestamp
till Java 7.
We check both java.time.Instant
and java.sql.Timestamp
one by one.
1. Using java.time.Instant
( for Java 8)
As per the javadoc,
This class models a single instantaneous point on the timeline. This might be used to record event timestamps in the application.
I have given an example below that shows how to get the current timestamp using java.time.Instant
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import java.sql.Timestamp;
import java.time.Instant;
import java.util.Date;
/**
* A Java Program to get the current timestamp using the java.time.Instant
* @author coderolls.com
*/
public class InstantExample {
public static void main(String[] args) {
Instant instant = Instant.now();
System.out.println("1. instant: "+ instant); // 2021-05-13T15:05:18.734Z
//convert date object to instant
Date date = new Date();
Instant instantFromDate = date.toInstant();
System.out.println("2. instantFromDate: " +instantFromDate); // 2021-05-13T15:05:18.873Z
//get instant from the java.sql.Timestamp
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
Instant instantFromTimestamp = timestamp.toInstant();
System.out.println("3. instantFromTimestamp: "+ instantFromTimestamp); // 2021-05-13T15:05:18.874Z
//get the epoch timestamp in milliseconds
//epoch timestamp is the number of milliseconds since January 1, 1970, 00:00:00 GMT
Instant instant2 = Instant.now();
long timeStampMillis = instant2.toEpochMilli();
System.out.println("4. timeStampMillis: "+ timeStampMillis); // 1620918318874
//get the epoch timestamp in seconds
Instant instant3 = Instant.now();
long timeStampSeconds = instant3.getEpochSecond();
System.out.println("5. timeStampSeconds: "+ timeStampSeconds); // 1620918318
}
}
Output:
1
2
3
4
5
1. instant: 2021-05-13T15:24:19.907Z
2. instantFromDate: 2021-05-13T15:24:19.988Z
3. instantFromTimestamp: 2021-05-13T15:24:19.988Z
4. timeStampMillis: 1620919459988
5. timeStampSeconds: 1620919459
See the above code as GitHub Gist
Explanation:
- In the first case, we have used the
.now()
method of theInstant
class to get the current timestamp. - In the second case, we have created a new
date
object, and then we have used the.toInstant()
on thedate
object to get the current timestamp. - In the third case, we have created a new
timestamp
object using the system time in milliseconds. We can get the system time in millisecond using theSystem.currentTimeMillis()
. To get the current timestamp (as instant) we have used the.toInstant()
method on thetimestamp
object. - In the fourth case, we are trying to get the epoch timestamp in milliseconds. We can get it using the
.toEpochMilli()
method on theinstant
object. - In the fifth case, we are trying to get the epoch timestamp in seconds. We can get it using the
.getEpochSecond()
method on theinstant
object.
2. Using java.sql.Timestamp
( for Java 7 and below)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.sql.Timestamp;
import java.util.Date;
/**
* A Java program to get the current timestamp using java.sql.Timestamp
* @author coderolls.com
*/
public class TimestampExample {
public static void main(String[] args) {
//using system time in milliseconds
Timestamp timestampFromSystemTime = new Timestamp(System.currentTimeMillis());
System.out.println("1. timestampFromSystemTime: "+timestampFromSystemTime); // 2021-05-13 20:55:44.179
//using java.util.Date
Date date = new Date();
Timestamp timestampFromDateObject = new Timestamp(date.getTime());
System.out.println("2. timestampFromDateObject: " +timestampFromDateObject); // 2021-05-13 20:55:44.187
}
}
Output:
1
2
1. timestampFromSystemTime: 2021-05-13 20:55:44.179
2. timestampFromDateObject: 2021-05-13 20:55:44.187
See the above code as GitHub Gist
Explanation:
- In the first case, we get the
timestamp
using the system time in milliseconds. We can get the system time in milliseconds using theSystem.currentTimeMillis()
. - In the second case, we have created a new
date
object, and then we have used the.getTime()
on thedate
object to get the current time in milliseconds. We have passed the time milliseconds to the timestamp constructor to get the current timestamp.
Sometimes we may need to convert the java.time.Instant
to java.sql.Timestamp
or vice versa. So let’s see both conversions below.
How to convert Instant
to Timestamp
In Java?
I have given an example below that converts the java.time.Instant
to java.sql.Timestamp
class.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.sql.Timestamp;
import java.time.Instant;
/**
* A Java Program to convert java.time.Instant to java.sql.Timestamp
*
* @author Gaurav Kukade at coderolls.com
*
*/
public class InstantToTimestamp {
public static void main(String[] args) {
//Get Timestamp from Instant
Instant instant = Instant.now();
Timestamp timestamp = Timestamp.from(instant);
System.out.println("Instant To Timestamp: " +timestamp); // 2021-05-13 21:07:44.381
}
}
Output:
1
Instant To Timestamp: 2021-05-13 21:07:44.381
See the above code as GitHub Gist
Explanation:
In the above example, we have used .from()
of the Timestamp
class to get the current timestamp from the instant
object.
1
Timestamp timestamp = Timestamp.from(instant);
How to convert Timestamp
to Instant
In Java?
I have given an example below that converts the java.sql.Timestamp
to java.time.Instant
class.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.sql.Timestamp;
import java.time.Instant;
/**
* A Java Program to convert java.sql.Timestamp to java.time.Instant
*
* @author Gaurav Kukade at coderolls.com
*
*/
public class TimestampToInstant {
public static void main(String[] args) {
//get instant from the java.sql.Timestamp
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
Instant instant = timestamp.toInstant();
System.out.println("Timestamp To Instant: " +instant); // 2021-05-13T15:39:08.046Z
}
}
Output:
1
Timestamp To Instant: 2021-05-13T15:39:08.046Z
See the above code as GitHub Gist
Explanation:
In the above example, we have used the .toInstant()
method on the timestamp
object to get the current timestamp (as Instant ).
Conclusion
We can get the current timestamp in Java using the Instant
and Timestamp
.
From Java 8, it is recommended to use the timestamp of the Instant class. We can get the current timestamp from Instant
as is given below,
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Instant instant = Instant.now();
//convert date object to instant
Date date = new Date();
Instant instantFromDate = date.toInstant();
//get instant from the java.sql.Timestamp
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
Instant instantFromTimestamp = timestamp.toInstant();
//get the epoch timestamp in milliseconds
//epoch timestamp is the number of milliseconds since January 1, 1970, 00:00:00 GMT
Instant instant2 = Instant.now();
long timeStampMillis = instant2.toEpochMilli();
//get the epoch timestamp in seconds
Instant instant3 = Instant.now();
long timeStampSeconds = instant3.getEpochSecond();
In Java 7 or below, we can use the Timestamp
class to get the current timestamp.
1
2
3
4
5
6
7
8
//using system time in milliseconds
Timestamp timestampFromSystemTime = new Timestamp(System.currentTimeMillis());
//using java.util.Date
Date date = new Date();
System.out.println(date.getTime());
Timestamp timestampFromDateObject = new Timestamp(date.getTime());
Also, we can convert the java.time.Instant
to java.sql.Timestamp
or vice versa.
Instant To Timestamp
1
2
Instant instant = Instant.now();
Timestamp timestamp = Timestamp.from(instant);
Timestamp to Instant
1
2
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
Instant instant = timestamp.toInstant();
That’s it for now.
If you have any queries about the above article, please comment below. Thanks.
We will see how to get the current date-time in java. Also, we will see how we can format them using the SimpleDateFormat.
You can check my YouTube channel here
Join Newsletter
Get the latest tutorials right in your inbox. We never spam!