I'm writing a date/time value to an XML file by reading the date from a RAP based UI as a Java Date object, and passing it as an XMLGregorianCalendar object to actual file writing code. The corresponding classes are auto generated and I don't have control over them. The date I entered was:
03-03-1933:03:03:03.
It got converted to the following string when written in the file:
1933-03-03T03:03:03.161+05:53
Now, when I read the date back to show it in the UI for edit, it appeared there as:
03-03-1933:03:03:23
Note the extra 20 seconds added to the actual seconds value.
Why is this happening? Is it some bug in the API? Any help will be much appreciated!
Relevant code:
1) Converting to XMLGregorianCalendarfrom Date:
GregorianCalendar calendar = new GregorianCalendar();
calendar.setTimeInMillis(date.getTime());
XMLGregorianCalendar date2;
date2 = DatatypeFactory.newInstance().newXMLGregorianCalendar(calendar);
// pass 'date2' to file writing code
2) Converting to Date from XMLGregorianCalendar:
XMLGregorianCalendar cal = getDateFromFile(); // XML date read from file
Date date = cal.toGregorianCalendar().getTime();
// show Date object in UI, dateCtrl and timeCtrl are SWT DateTime objects
GregorianCalendar calendar = new GregorianCalendar();
calendar.setTime( date );
dateCtrl.setDate( calendar.get( GregorianCalendar.YEAR ),
calendar.get( GregorianCalendar.MONTH ),
calendar.get( GregorianCalendar.DAY_OF_MONTH ) );
timeCtrl.setTime( calendar.get( GregorianCalendar.HOUR_OF_DAY ),
calendar.get( GregorianCalendar.MINUTE ),
calendar.get( GregorianCalendar.SECOND) );
Dateto aGegorianCalendarappears to give it a very strange time zone:+05:53. Also strange is that it has an offset of 161 milliseconds. Could you provide code showing how you createddate? On my machine,date2results in1933-03-03T03:03:03.000+01:00(which is correct for my Amsterdam time zone). – Paul Lammertsma Nov 27 '10 at 17:31