Name: diC59631 Date: 01/12/98
import java.util.*;
import java.text.*;
Compile and execute the file below. You will notice that
The the first line shows ...Apr....
And the second line shows March...
for the SAME date!
All the best,
Rimon.
import java.util.*;
import java.text.*;
public class testcal {
public static void main(String args[]) {
// choose a date that is the FIRST of some month
// and some arbitrary time
Date d=new Date(97, 3, 1, 1, 1, 1);
SimpleDateFormat df=new SimpleDateFormat("MMMM");
System.out.println("Date="+d);
System.out.println("DF="+df.format(d));
}
}
(Review ID: 23200)
======================================================================