Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm receiving a datetime from a SOAP webservice without timzone information. Hence, the Axis deserializer assumes UTC. However, the datetime really is in Sydney time. I've solved the problem by substracting the timezone offset:

Calendar trade_date = trade.getTradeDateTime();
TimeZone est_tz = TimeZone.getTimeZone("Australia/Sydney");
long millis = trade_date.getTimeInMillis() - est_tz.getRawOffset();
trade_date.setTimeZone( est_tz );
trade_date.setTimeInMillis( millis );

However, I'm not sure if this solution also takes daylight saving into account. I think it should, because all operations are on UTC time. Any experiences with manipulating time in Java? Better ideas on how to solve this problem?

share|improve this question
1  
I always, ever, and only manipulate date (in any language) by using the only unit that is fixed. That unit is the second (or millisecond). There are minutes with 59 or 61 seconds and there are days with 23 or 25 hours. There are hours with 60*60 +/- 1 seconds, etc. All my dates are stored as (milli)seconds since the epoch. That's how they're in the DB, that's how they're sorted. The only time at which I do a timezone/yyyy-mm-dd whatever conversion is when it needs to be displayed to the user (or when using broken APIs that don't understand that a date is expressable in seconds). – SyntaxT3rr0r May 20 '10 at 11:33
@WizardOfOdds. That's the sound advice, but OP's clearly posted that he receives the timestamp from a web service ( possibly 3rd party ) and used a 3rd-party library to process that request. Clearly there are some things out of his direct control, and converting from timezone to timezone is definitely not straight forward with java.util.Calendar. – Alexander Pogrebnyak May 20 '10 at 12:06
Thanks for your comments. I'm generating the Web Service stubs from WSDL file using Axis. I'm using the generated classes to connect to a third party web service. I actually thing they should transmit datetime fields either with time zone information or in UTC, which is what Axis is expecting. But that's not my choice. – user346034 May 20 '10 at 13:30

4 Answers

I pity the fool who has to do dates in Java.

What you have done will almost certainly go wrong around the timezone. The best way to to it is probably to create a new Calendar object, set the Timezone on it, and then set all of the fields individually, so year, month, day, hour, minute, second, getting the values from the Date object.

Edit:
To keep the everyone happy, you should probably do this:

Calendar utcTime = Calendar.getInstance(getTimeZone("UTC"));
Calendar sydneyTime = Calendar.getInstance(getTimeZone("Australia/Sydney");
utcTime.setTime(trade_date);
for (i = 0; i < Calendar.FIELD_COUNT)
  sydneyTime.set(i, utcTime.get(i));

Then you won't be using any deprecated methods.

share|improve this answer
-1: For suggesting using deprecated methods of java.util.Date class – Alexander Pogrebnyak May 20 '10 at 11:31
probably: newCalendar.set(oldCalendar.get(Calender.YEAR), oldCalendar.get(Calendar.MONTH),..., oldCalendar.get(Calendar.SECOND)); – wds May 20 '10 at 11:59
@Alexander Pogrebnyak : I have updated the answer so that users are not lead to the dark side ;-) – Paul Wagland May 21 '10 at 23:24
downvote removed. – Alexander Pogrebnyak May 21 '10 at 23:40

However, I'm not sure if this solution also takes daylight saving into account. I think it should, because all operations are on UTC time.

Yes, you should take the daylight saving into account, since it affects the offset to UTC.

Any experiences with manipulating time in Java? Better ideas on how to solve this problem?

JodaTime is a better time API. Maybe the following snippet could be of help :

DateTimeZone zone; // TODO : get zone
DateTime fixedTimestamp = new DateTime(year, monthOfYear, dayOfMonth, hourOfDay, minuteOfHour, secondOfMinute, millisOfSecond, zone);

JodaTime types are immutable which is also a benefit.

share|improve this answer
Thanks for the link to JodaTime. However, I won't introduce a new third-party library for that project. But I will consider JodaTime the nex time. – user346034 May 20 '10 at 15:47

I normally do it this way

Calendar trade_date_utc = trade.getTradeDateTime();
TimeZone est_tz = TimeZone.getTimeZone("Australia/Sydney");
Calendar trade_date = Calendar.GetInstance(est_tz);
trade_date.setTimeInMillis( millis );
share|improve this answer
up vote 0 down vote accepted

I've decided to reparse the datetime string received with the correct time zone set. This should also consider daylight saving:

public class DateTest {

    private static SimpleDateFormat soapdatetime = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS");

    /**
     * @param args
     */
    public static void main(String[] args) {
        TimeZone oztz = TimeZone.getTimeZone("Australia/Sydney");
        TimeZone gmtz = TimeZone.getTimeZone("GMT");
        Calendar datetime = Calendar.getInstance( gmtz );

        soapdatetime.setTimeZone( gmtz );
        String soap_datetime = soapdatetime.format( datetime.getTime() );
        System.out.println( soap_datetime );

        soapdatetime.setTimeZone( oztz );
        datetime.setTimeZone( oztz );
        try {
            datetime.setTime(
                    soapdatetime.parse( soap_datetime )
            );
        } catch (ParseException e) {
            e.printStackTrace();
        }

        soapdatetime.setTimeZone( gmtz );
        soap_datetime = soapdatetime.format( datetime.getTime() );
        System.out.println( soap_datetime );
    }
}
share|improve this answer

Your Answer

 
discard

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