If you want to display a Java Date in GMT (UTC) timezone then you need follow the below steps,
- Create a Date object: Date currentDate = new Date();
- Create a SimpleDate object: DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm");
- Now set timezone to DateFormat object: dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
- Now when you apply the dataFormat to the currentDate object, you will get the time printed in GMT: System.out.println(dateFormat.format(currentDate));
package org.code2care;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
public class Main {
public static void main(String[] args) {
Date currentDate = new Date();
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
System.out.println("Local Time: " + dateFormat.format(currentDate));
dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
System.out.println("Time in GMT: " + dateFormat.format(currentDate));
}
}
Local Time: 2021/03/27 04:25:50
Time in GMT: 2021/03/27 09:25:50

Java Display Time in GMT Example
By default when you create a Date object instance in Java you will get the time in the TimeZone that you have set on your device. Say you write a piece of code on your computer and you live in Chicago, your default system time zone will be America/Chicago (CST/CDT)
public static void main(String[] args) {
Date currentDate = new Date();
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
System.out.println(dateFormat.format(currentDate));
}
Output:
2021/03/26 15:00:00.000-05:00
If your server is hosted in New York, then when the same code runs the output will be of America/New_York timezone,
2021/03/26 15:00:00.000-04:00
Have Questions? Post them here!
More Posts related to Java,
- How to get Java Thread name Example [Program]
- Java 8: Get First and Last Date of the Week for Given Date
- Convert String to int in Java
- How to Get List of All Country Codes in Java Using Locale Class
- Convert Multidimensional Array toString In Java
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Display Era details (AD BC) in Java Date using SimpleDateFormat
- Create a Zip file using Java Code programmatically
- [Fix] java.net.MalformedURLException: unknown protocol
- [fix] Java JDBC ConnectException: Connection refused
- Read Json File and Convert to Java Object using Jackson
- list of jars required for hibernate 4.x.x
- Simple Struts 2 Tutorial in eclipse with tomcat 7 server
- Java: The value of the local variable string is not used
- [fix] URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs) IntelliJ
- Java 8+ get Day of the Week Examples with LocalDateTime, DateTime, ZonalDateTime and Instant classes
- Run SQL Script file using Java JDBC Code Example
- Remove Trailing zeros BigDecimal Java
- Java JDBC IN Clause Example with PreparedStatement MySQL
- Convert Java List to Json String using Jackson
- Java 8 foreach loop code examples
- error: file not found: HelloWorld.java
- IntelliJ Keyboard Shortcut to remove unused imports [Java]
- Exception in thread main java.lang.NoClassDefFoundError: package javaClass
- Struts 2 Hello World Example in Eclipse
More Posts:
- Cannot start Android Studio. No JDK found - Android-Studio
- C#.Net error The underlying connection was closed: An unexpected error occurred on a send - SharePoint
- [fix] MySQL cj jdbc CommunicationsException: Communications link failure - Java
- [Fix] Java - Exception in thread main java.lang.IllegalThreadStateException - Java
- How to Close Safari in Mac using Keyboard shortcut - MacOS
- How to get query string in JavaScript HTML location.search - JavaScript
- How to know docker Engine details - Docker
- [Solution] AWS Java SDK S3 AmazonS3Exception InvalidAccessKeyId - AWS