返回列表 發帖

Locale與DateFormat的用法

本帖最後由 ray 於 2011-12-17 20:16 編輯

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

返回列表