i have weird situation i have simple code that looks like this :

Date d = new Date(1308670980000L);
SimpleDateFormat f = new SimpleDateFormat("dd.MM.yyyy,HH:mm");
String s = f.format(d); 

some computers im getting : 21.06.2011 15:43 and this is the date that im expecting to get and its fine .
but on other pc's im getting :21.06.2011,18:43 i dont know why im getting this date. what can be wrong in the pc or java configuration that gives me this ?

link|improve this question

65% accept rate
1  
Did you check the locale? – CoolBeans Jun 28 '11 at 15:47
where do i check the local? – user63898 Jun 28 '11 at 16:32
feedback

2 Answers

It sounds like the two computers have their clocks set to different time zones.

link|improve this answer
where can i fix the time zone? – user63898 Jun 29 '11 at 6:19
On the computer clock, or with Java code? – Matt Ball Jun 29 '11 at 11:57
feedback

It depends on the default timezone.

If you want the GMT time you need to do something like this:

Date d = new Date(1308670980000L);
SimpleDateFormat f = new SimpleDateFormat("dd.MM.yyyy,HH:mm");
f.setTimeZone(TimeZone.getTimeZone("GMT");
String s = f.format(d); 
link|improve this answer
hi , i removed the accept , beaocse in my pc it fixed the problem but in others the time is still wrong and its dosn't do any thing its just dosn't work , what else can it be ? – user63898 Jun 29 '11 at 6:19
The result of s in this code must return the exact same on every machine – Pablo Fernandez Jun 29 '11 at 19:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.