Thanks Nick,
I did some tinkering of my own and came up with this:
Calendar cal = Calendar.getInstance();
String mondayyear = "MMM dd, yyyy";
java.text.SimpleDateFormat dateformat =
new java.text.SimpleDateFormat(mondayyear);
System.out.println(dateformat.format(cal.getTime()));
Which effectively gives me:
Nov 01, 2000
I plugged your code in with a few minor changes:
System.out.println(DateFormat.getDateInstance(DateFormat.FULL).format(cal.getTime()));
and got what I wanted:
Wednesday, November 1, 2000
Thanks
alot.
J