Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My system time is 12:23 AM, but if i try to display the time using normal java code;

Date dt = new Date();
System.out.println("date is "+dt);

i am getting different time : date is Mon Sep 05 01:23:18 BDST 2011 Help me out.

share|improve this question
3  
Maybe problem with time zone? Please,look here stackoverflow.com/questions/6981890/… – Daulet Urazalinov Sep 4 '11 at 18:34
daylight saving time issues maybe – ratchet freak Sep 4 '11 at 18:42
I think it may be a daylight saving time issue . How can I solve that? – Diptopol Dam Sep 4 '11 at 18:52
Jdk 6 has problem with date. When i installed jdk 7 problem is solved. – Diptopol Dam Apr 25 '12 at 6:14

3 Answers

Is it correct now?

Date dt = new Date();
System.out.println(DateFormat.getDateTimeInstance().format(dt));

Is BDST (British Double Summer Time) your time zone (GMT +01:00)?

share|improve this answer

This may help...

import java.util.Calendar;
import java.text.SimpleDateFormat;

public class DateUtils {
    public static final String DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";

    public static String now() {
        Calendar cal = Calendar.getInstance();
        SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW);
        return sdf.format(cal.getTime());
    }

    public static void  main(String arg[]) {
        System.out.println("Now : " + DateUtils.now());
    }
}
share|improve this answer
no .I tried your approach . But still not working. – Diptopol Dam Sep 4 '11 at 18:42
@Diptopol Dam Updated the answer. – fireshadow52 Sep 4 '11 at 18:48

It's a little convoluted but you could do the following (obviously substitute your time zone):

Calendar cal = Calendar.getInstance( TimeZone.getTimeZone("America/Los_Angeles") );
Date dt = cal.getTime();

System.out.println( dt);

I've not tried it but I have a feeling this might work! Date will always initialise to UTC.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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