import java.lang.*;
import java.util.*;
import java.util.Scanner;
import java.text.*;
public class TQC102
{
public static void main(String[] argv) {
Date currentDate = new Date();
Locale loc = new Locale("zh", "TW");
DateFormat dateformat;
dateformat = DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT,loc);
System.out.println(dateformat.format(currentDate));
dateformat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM,loc);
System.out.println(dateformat.format(currentDate));
dateformat = DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG,loc);
System.out.println(dateformat.format(currentDate));
dateformat = DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL,loc);
System.out.println(dateformat.format(currentDate));
//SHORT, MEDIUM, LONG, FULL
}
} |