Date currentDate = new Date();
Locale loc = new Locale("zh", "TW");
DateFormat dateformat;
dateformat = DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT,loc);
// loc 可換成 LocaleTAIWAN
System.out.println(dateformat.format(currentDate));
SHORT
MEDIUM
LONG
FULL