You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2007/10/17 10:25:51 UTC

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

     [ https://issues.apache.org/jira/browse/HARMONY-493?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess closed HARMONY-493.
--------------------------------


> daylight savings parsing problem
> --------------------------------
>
>                 Key: HARMONY-493
>                 URL: https://issues.apache.org/jira/browse/HARMONY-493
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Mark Hindess
>            Assignee: Mark Hindess
>            Priority: Minor
>         Attachments: harmony-493-test.patch, 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.
-
You can reply to this email to add a comment to the issue online.