I have written following code. I want to get Date object in UTC format.
I am able to get expected date string in UTC using SimpleDateFormat. But using
SimpleDateFormat
In java 8 , It's really easy to get timestamp in UTC by using java 8 java.time.Instant library :
Instant.now();
That few word of code will return the UTC Timestamp.