//方法1
//mm要大寫,ss要小寫,dd大寫表示一年中的第幾天,dd小寫表示一月中的第幾天;大寫hh和小寫hh表示24小時制和12小時制
date date=new date();
//格式化日期
******dateformat sdf = new ******dateformat("yyyy-mm-dd hh:mm:ss");
system.out.println(sdf.format(date));
//方法2
calendar c = calendar.getinstance();//可以對每個時間域單獨修改
int year = c.get(calendar.year);
int month = c.get(calendar.month) + 1; 返回月份索引,從0開始,所以進行加1操作
int date = c.get(calendar.date);
int hour = c.get(calendar.hour_of_day);
int minute = c.get(calendar.minute);
int second = c.get(calendar.second);
system.out.println(year + "/" + month + "/" + date + " " +hour + ":" +minute + ":" + second);
//方法3(不常用)
******dateformat sdf = new ******dateformat("yyyy-mm-dd hh:mm:ss");
system.out.println(sdf.format(system.currenttimemillis()));
php中獲取當前時間
time 在php中是得到乙個數字,這個數字表示從1970 01 01到現在共走了多少秒,很奇怪吧 不過這樣方便計算,要找出前一天的時間就是 time 60 60 24 要找出前一年的時間就是 time 60 60 24 365 那麼如何把這個數字換成日期格式呢,就要用到date函式了 t time...
MFC中獲取當前時間
1.使用ctime類 cstring str 獲取系統時間 ctime tm tm ctime getcurrenttime str tm.format 現在時間是 y年 m月 d日 x messagebox str,null,mb ok 2 得到系統時間日期 使用getlocaltime syst...
Java獲取當前時間是週幾
1 使用calendar類 獲取當前日期是星期幾 param dt return 當前日期是星期幾 public static string getweekofdate date dt calendar cal calendar.getinstance cal.settime dt int w ca...