i want to create a java program that displays the current time in GMT timezone using System.currentTimeMillis()
method.
public class DisplayTime {
public static void main(String[] args){
long totalMilliSeconds = System.currentTimeMillis();
long totalSeconds = totalMilliSeconds / 1000;
long currentSecond = totalSeconds % 60;
long totalMinutes = totalSeconds / 60;
long currentMinute = totalMinutes % 60;
long totalHours = totalMinutes / 60;
long currentHour = totalMinutes % 12;
System.out.println(currentHour + " : " + currentMinute + " : " + currentSecond);
}
}