package date; import java.text.DateFormat; import java.util.Calendar; import java.util.Date; /*2015-9-9*/ public class DateDemo { /** * @param args */ public static void main(String[] args) { Date now = new Date(); System.out.println("用Date方式顯示時間: " + now);//此方法顯示的結果和Calendar.getInstance().getTime()一樣 DateFormat d1 = DateFormat.getDateInstance(); //預設語言(漢語)下的預設風格(MEDIUM風格,比如:2008-6-16 20:54:53) String str1 = d1.format(now); System.out.println("用DateFormat.getDateInstance()格式化時間後為:" + str1); DateFormat d2 = DateFormat.getDateTimeInstance(); String str2 = d2.format(now); System.out.println("用DateFormat.getDateTimeInstance()格式化時間後為:" + str2); DateFormat d3 = DateFormat.getTimeInstance(); String str3 = d3.format(now); System.out.println("用DateFormat.getTimeInstance()格式化時間後為:" + str3); DateFormat d4 = DateFormat.getInstance(); //使用SHORT風格顯示日期和時間 String str4 = d4.format(now); System.out.println("用DateFormat.getInstance()格式化時間後為:" + str4); DateFormat d5 = DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL); //顯示日期,周,時間(精確到秒) String str5 = d5.format(now); System.out.println("用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化時間後為:" + str5); DateFormat d6 = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG); //顯示日期。時間(精確到秒) String str6 = d6.format(now); System.out.println("用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化時間後為:" + str6); DateFormat d7 = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT); //顯示日期,時間(精確到分) String str7 = d7.format(now); System.out.println("用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化時間後為:" + str7); DateFormat d8 = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM); //顯示日期,時間(精確到分) String str8 = d8.format(now);//與SHORT風格相比,這種方式最好用 System.out.println("用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化時間後為:" + str8); DateFormat d9=DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM); String str9=d9.format(now); System.out.println("DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM)"+str9); Calendar ca = Calendar.getInstance(); int year = ca.get(Calendar.YEAR);//獲取年份 int month = ca.get(Calendar.MONTH);//獲取月份 int day = ca.get(Calendar.DATE);//獲取日 int minute = ca.get(Calendar.MINUTE);//分 int hour = ca.get(Calendar.HOUR);//小時 int second = ca.get(Calendar.SECOND);//秒 int WeekOfYear = ca.get(Calendar.DAY_OF_WEEK); System.out.println("用Calendar.getInstance().getTime()方式顯示時間: " + ca.getTime()); System.out.println("用Calendar獲得日期是:" + year + "年" + month + "月" + day + "日"); System.out.println("用Calendar獲得時間是:" + hour + "時" + minute + "分" + second + "秒"); System.out.println(WeekOfYear);//顯示今天是一週的第幾天(我做的這個例子正好是週二,故結果顯示2,如果你再周6執行,那麼顯示6) } }
輸出:
用Date方式顯示時間: Wed Sep 09 21:37:04 CST 2015 用DateFormat.getDateInstance()格式化時間後為:2015-9-9 用DateFormat.getDateTimeInstance()格式化時間後為:2015-9-9 21:37:04 用DateFormat.getTimeInstance()格式化時間後為:21:37:04 用DateFormat.getInstance()格式化時間後為:15-9-9 下午9:37 用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化時間後為:2015年9月9日 星期三 下午09時37分04秒 CST 用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化時間後為:2015年9月9日 下午09時37分04秒 用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化時間後為:15-9-9 下午9:37 用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化時間後為:2015-9-9 21:37:04 DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM)2015年9月9日 21:37:04 用Calendar.getInstance().getTime()方式顯示時間: Wed Sep 09 21:37:04 CST 2015 用Calendar獲得日期是:2015年8月9日 用Calendar獲得時間是:9時37分4秒 4