I have 2 different computers, each with different TimeZone.
In one computer im printing System.currentTimeMillis()
, and then prints the following command in both computers:
System.out.println(new Date(123456));
--> 123456 stands for the number came in the currentTimeMillis
in computer #1.
The second print (though typed hardcoded) result in different prints, in both computers. why is that?