DateFormat and Locale
Locale locale =new Locale("en","US");
GregorianCalendar calendar =new GregorianCalendar(locale);
calendar.clear();
calendar.set(2006, 1, 3, 9, 10, 5);
SimpleDateFormat sdf =new SimpleDateFormat("dd/MMM/yyyy HH:mm:ss");
sdf.setCalendar(calendar);
String result = sdf.format(calendar.getTime());
System.out.println("result [" + result +"]");
I am trying to print "Feb", but this code prints "Fev". What's wrong?
Thank you!

