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.
DateFormat formatter = new SimpleDateFormat("yyyy MM dd HH:mm:ss z");Use this – MKJParekh Jul 3 '12 at 13:57