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.

I want to get system time with a given format. I am using following code block. First I am getting the time as a string in the format which I want, then I try to convert it to real Date object, but it doesn't convert with the format that I want. What am I doing wrong?

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
        String currentDateandTime = sdf.format(new Date(System.currentTimeMillis()));
        Date convertedDate;
        try {
            convertedDate = sdf.parse(currentDateandTime);
            Log.d("Time", "yyyy-MM-dd'T'HH:mm:ss.SSSZ " + currentDateandTime +" "+convertedDate);

        } catch (ParseException e) {
            e.printStackTrace();
        } 

And this is the logcat output

07-03 15:41:43.783: D/Time(2975): yyyy-MM-dd'T'HH:mm:ss.SSSZ 2012-07-03T15:41:43.783Z   Tue Jul 03 15:41:43 EEST 2012

Thanks for your helps.

share|improve this question
What is 'T' and 'Z' in your time format? – Vipul Purohit Jul 3 '12 at 12:56
I want to send this time to my web service which I created on JBOSS. and it says "not compatible with any of standard forms ("yyyy-MM-dd'T'HH:mm:ss.SSSZ", "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", "EEE, dd MMM yyyy HH:mm:ss zzz", "yyyy-MM-dd"))" when I want to send time normally. I got that format from one of this. I tried with deleting T and Z but didn't help – user1448565 Jul 3 '12 at 13:00
can you write a sample date and time in the format which you required? – Vipul Purohit Jul 3 '12 at 13:05
2012-07-03T15:41:43.783Z need this for example. it is shown in logcat, first one is the form which I want, the second is the form that android makes – user1448565 Jul 3 '12 at 13:07
1  
DateFormat formatter = new SimpleDateFormat("yyyy MM dd HH:mm:ss z"); Use this – MKJParekh Jul 3 '12 at 13:57
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.