In this section, you will learn to convert a GMT to PST format. The GMT stands for Greenwich Mean Time and PST stands for Pacific Standard Time.
Convert GMT to PST
In this section, you will learn to convert a GMT to PST format. The GMT stands for Greenwich Mean
Time and PST stands for Pacific Standard Time.
Description of program:
This example helps you in converting a GMT time to PST time on the console. The SimpleDateFormat()
constructor uses the given pattern and date format symbols. Here we use the date format
as gmtFormat which gets converted to pstFormat. Then we have used
getTimeZone() method to get the time of both the zones to be converted.
Pacific Standard Time (PST) = GMT-8
Pacific Daylight Time (PDT) = GMT-7
Here is the code of program:
|
Output of the program:
C:\unique>javac GMTtoPST.java C:\unique>java GMTtoPST GMT Time: 8/4/07 9:54 AM PST Time: 8/4/07 2:54 AM C:\unique> |