If you want to display a Java Date in GMT 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
More Posts related to Java,
- [Java] Error: Unmappable character for encoding UTF-8. Save could not be completed.
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Your JBoss Application Server 7 is running However you have not yet added any users to be able to access the admin console
- Difference between using Scanner Class and String args for user input in Java
- Maven Unsupported major.minor version 51.0
- Java: TimeZone List with GMT/UTC Offset
- [Fatal Error] XML The markup in the document following the root element must be well-formed.
- Java Split String by Spaces
- [Solved] com.sun.xml.ws.transport.http.servlet.WSServletContextListener ClassNotFoundException
- hibernate.cfg.xml Configuration and Mapping xml Example
More Posts:
- How to know if someone has read your WhatsApp message - WhatsApp
- Android Studio NoClassDefFoundError: java.awt.Toolkit - Android-Studio
- WhatsApp launches WhatsApp Web to Access Messages over web browser - WhatsApp
- What is Android Toast.LENGTH_SHORT and Toast. LENGTH_LONG durations - Android
- Check Wifi Connection static Android Programming - Android
- Android Constant and Resource Type Mismatches Lint - Android
- How to Word wrap eclipse console logs width - Eclipse
- How to hide Navigation bar from Android Screen Activity - Android
- Share image and text Twitter using your Android Application Programatically - Twitter
- WhatsApp Web escanner - WhatsApp
- Programmatically check if Facebook is installed on Android device - Android
- Install Apache Tomcat ver 8 on Mac OS X Yosemite 10.10 - Mac-OS-X
- Disable Control Scroll Zoom-in and Zoom-out in Notepad++ - NotepadPlusPlus
- Can we move apps like WhatsApp, Facebook to external MicroSD card - WhatsApp
- Java: Check Internet connection on Android Device (Wifi or Mobile) - Android