時間戳格式化

2021-08-18 12:11:11 字數 514 閱讀 3017

獲取系統當前時間戳

long timestamp = system.currenttimemillis();
將時間戳轉化為date物件

date date = new date(timestamp);
按指定格式生成解析物件

******dateformat dateformat = new ******dateformat("yyyy年 mm月 dd日 hh時 mm分 ss秒");
解析,生成表示日期時間的字串

string datestring = dateformat.format(date);
列印字串

system.out.println(datestring);
console:

2023年 04月 10日 12時43分44秒

時間戳格式化

1.格式化為yyyy mm dd hh mm ss形式的 public static string formatdatetime date date 2.格式化為 年 月 日 形式 public static string formatdate date mydate public static i...

時間戳格式化函式

時間戳格式化函式 param format 格式 param timestamp 要格式化的時間 預設為當前時間 return 格式化的時間字串 function timeshift timestamp,format if typeof timestamp string 如果時間戳後不是毫秒值就加0...

時間戳格式化函式

對時間格式 date 1448864369815 的處理 我們在後台對資料進行json序列化時,如果資料中包含有日期,序列化後的結果可能是這樣的 date 1448864369815 asp.net mvc 中的 json 方法執行後的結果就是如此。提供乙個原生js的處理方法 function js...