You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Oleg Khaschansky (JIRA)" <ji...@apache.org> on 2006/08/10 20:35:15 UTC

[jira] Updated: (HARMONY-493) daylight savings parsing problem

     [ http://issues.apache.org/jira/browse/HARMONY-493?page=all ]

Oleg Khaschansky updated HARMONY-493:
-------------------------------------

    Attachment: harmony-493.patch

Patch for this issue.

> daylight savings parsing problem
> --------------------------------
>
>                 Key: HARMONY-493
>                 URL: http://issues.apache.org/jira/browse/HARMONY-493
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Mark Hindess
>            Priority: Minor
>         Attachments: harmony-493.patch
>
>
> The following test code gives different results on Harmony than on RI.  Harmony outputs:
> d = 1143334200000
> and RI outputs:
> d = 1143337800000
> import java.text.DateFormat;
> import java.text.SimpleDateFormat;
> import java.util.TimeZone;
> import java.util.Date;
> import java.util.Locale;
> public class Test {
>     public static void main(String[] args) {
>         DateFormat df = new SimpleDateFormat("MMM dd, yyyy H:mm:ss.SSS",
>                                              Locale.ENGLISH);
>         TimeZone zone = TimeZone.getTimeZone("Europe/London");
>         df.setTimeZone(zone);
>         Date d = null;
>         try {
>             d = df.parse("March 26, 2006 01:50:00.000");
>         } catch (Exception e) {
>             e.printStackTrace();
>         }
>         System.err.println("d = " + d.getTime());
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira