var testdate = new date();
// tostring() 把 date 物件轉換為字串。
var dateobj_tostring = testdate.tostring();
// totimestring() 把 date 物件的時間部分轉換為字串。
var dataobj_totimestring = testdate.totimestring();
// todatestring() 把 date 物件的日期部分轉換為字串。
var dateobj_todatestring = testdate.todatestring();
// toutcstring() 根據世界時,把 date 物件轉換為字串。
var dateobj_toutcstring = testdate.toutcstring();
// tolocalestring() 根據本地時間格式,把 date 物件轉換為字串。
var dateobj_tolocalstring = testdate.tolocalestring();
// tolocaletimestring() 根據本地時間格式,把 date 物件的時間部分轉換為字串。
var dateobj_tolocaltimestring = testdate.tolocaletimestring();
// tolocaledatestring() 根據本地時間格式,把 date 物件的日期部分轉換為字串。
var dateobj_tolocaledatestring = testdate.tolocaledatestring();
關於date方法的介紹
·date | 返回當日的日期和時間
·getfullyear | 根據本地時間獲取當前年份(四位數字)
·getmonth | 從 date 物件返回月份 (0 ~ 11)
·getdate | 從 date 物件返回乙個月中的某一天 (1 ~ 31)
·getday | 從 date 物件返回一周中的某一天 (0 ~ 6)
·gethours | 根據本地時間獲取當前小時數(24小時制,0-23)
·getminutes | 根據本地時間獲取當前分鐘數(0 ~ 59)
·getseconds | 根據本地時間獲取當前秒數(0 ~ 59)
·getmilliseconds | 根據本地時間獲取當前毫秒數(0 ~ 999)
·gettime | 獲取utc(世界時間)格式的從1970.1.1 0:00以來的毫秒數
·gettimezoneoffset | 獲取當前時間和utc格式的偏移值(以分鐘為單位)
·getutcdate | 獲取utc格式的當前日期(本月的幾號)
·getutcday | 獲取utc格式的今天是星期幾(0 ~ 6)
·getutcfullyear | 獲取utc格式的當前年份(四位數字)
·getutchours | 獲取utc格式的當前小時數(24小時制,0-23)
·getutcmilliseconds | 獲取utc格式的當前毫秒數
·getutcminutes | 獲取utc格式的當前分鐘數
·getutcmonth | 獲取utc格式的當前月份(注意從0開始:0-jan,1-feb…)
·getutcseconds | 獲取utc格式的當前秒數
·getyear | 根據本地時間獲取當前縮寫年份(當前年份減去1900)
·setdate | 設定當前日期(本月的幾號)
·setfullyear | 設定當前年份(四位數字)
·sethours | 設定當前小時數(24小時制,0-23)
·setmilliseconds | 設定當前毫秒數
·setminutes | 設定當前分鐘數
·setmonth | 設定當前月份(注意從0開始:0-jan,1-feb…)
·setseconds | 設定當前秒數
·settime | 設定utc格式的從1970.1.1 0:00以來的毫秒數
·setutcdate | 設定utc格式的當前日期(本月的幾號)
·setutcfullyear | 設定utc格式的當前年份(四位數字)
·setutchours | 設定utc格式的當前小時數(24小時制,0-23)
·setutcmilliseconds | 設定utc格式的當前毫秒數
·setutcminutes | 設定utc格式的當前分鐘數
·setutcmonth | 設定utc格式的當前月份(注意從0開始:0-jan,1-feb…)
·setutcseconds | 設定utc格式的當前秒數
·setyear | 設定當前縮寫年份(當前年份減去1900)
·tostring | 將日期時間值轉換成」日期/時間」形式的字串值
·date.utc | 返回指定的utc格式日期時間的固定時間值
Java中如何將int 型別轉換為 Long型別
long l long 3 很多同學可能會用上面的方法將int型別轉換為long型別,但事實上這樣是不可行的。因為long是包裝類,而int是值型別資料,兩者是不能這樣強轉的。long l long 3 int和long都是基本型別的資料,是可以強轉的,那麼我就可以以此作為橋梁,強轉成long後,再...
excel中如何將時間戳轉換為日期格式
今天要將乙份有9900多條資料的excel表裡的時間戳轉化為日期格式,一開始的想法是網上的時間戳轉化工具來批量轉化。可以是可以,但是轉化後要複製到excel表,格式就出問題了。還要調格式,好麻煩。後面就想著excel是不是可以有公式函式來轉化。真的可!excel真的?這麼好用的趕緊記錄下來,也和有緣...
excel中如何將時間戳轉換為日期格式
從linux系統中獲取的時間戳資訊通常為s,將其轉換的公式為 text c4 1000 8 3600 86400 70 365 19,yyyy mm dd hh mm ss 其中c4單元格所存的資料為ms因此需要除以1000 轉換後的結果如下 時間戳轉成正常日期的公式 c1 a1 8 3600 86...