SimpleDateFormat dateFormat = new SimpleDateFormat("dd MM yyyy");
Date curDate = new Date();
System.out.println(dateFormat.format(curDate));
輸出
10 05 2002
也不正確 , 為甚麼 月份大了 1 月?