Name: mc57594 Date: 03/08/97
Calendar c = new GregorianCalendar(TimeZone.getDefault(),Locale.US);
c.set(1950,6,3); // July 3 1950.
Date d = c.getTime();
DateFormat df1=DateFormat.getDateInstance(DateFormat.FULL,Locale.US);
DateFormat df2=DateFormat.getDateInstance(DateFormat.FULL,Locale.FRANCE);
DateFormat df3=DateFormat.getDateInstance(DateFormat.FULL,Locale.CANADA_FRENCH);
DateFormat df4=DateFormat.getDateInstance(DateFormat.FULL,Locale.UK);
DateFormat df1s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.US);
DateFormat df2s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.FRANCE);
DateFormat df3s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.CANADA_FRENCH);
DateFormat df4s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.UK);
System.out.println(" Using default "+
"'Calendar c = new GregorianCalendar(TimeZone.getDefault(),Locale.US)' and "+
"\n 'c.set(1950,6,3)':"+ //old:,1,1,1)':"+
"\n Date d = c.getTime() = "+d+
"\n in "+Locale.US+" = "+df1s.format(d)+" = "+df1.format(d)+
"\n in "+Locale.FRANCE+" = "+df2s.format(d)+" = "+df2.format(d)+
"\n in "+Locale.UK+" = "+df4s.format(d)+" = "+df4.format(d)+
"\n in "+Locale.CANADA_FRENCH+" = "+df3s.format(d)+" = "+df3.format(d));
company - PLATINUM technology, inc. , email - ###@###.###
======================================================================
- duplicates
-
JDK-4083167 Date is wrong after transitioning from PDT to PST
-
- Closed
-