-
Using SimpleDateFormat
We use SimpleDateFormat to format the date in the required format. The code below formats the date in yyyyMMdd form.
Code:
import java.util.Calendar;
import java.text.SimpleDateFormat;
public class TestDate {
public static void main(String args[]){
String DATE_FORMAT = "yyyyMMdd";
SimpleDateFormat sdf =
new SimpleDateFormat(DATE_FORMAT);
Calendar c1 = Calendar.getInstance(); // today
System.out.println("Today is " + sdf.format(c1.getTime()));
}
}
-
Hi,
I am getting compilation error while using SimpleDateFormat in a J2ME Application.
Can u just let me know what I can do.
Thanks
Thiru