Beginning with JDK 8, the machine UTC timestamp with nanoseconds precision can be obtained via the java.time.Instant class as below:
// e.g., 2019-02-26T15:28:21.051163100ZInstant now = Instant.now();
Home » Get the UTC Machine Time in Java
Beginning with JDK 8, the machine UTC timestamp with nanoseconds precision can be obtained via the java.time.Instant class as below:
// e.g., 2019-02-26T15:28:21.051163100ZInstant now = Instant.now();
At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.
See our full editorial policy.