時間轉換
public static void main(string args) throws parseexception
執行結果
2020/06/10 10:23:846
wed jun 10 10:23:00 cst 2020
public static boolean checkhhmmssequals(string startstr, string endstr)
string array1 = startstr.split(":");//分割時間格式時:分:秒
string array2 = endstr.split(":");
int total1 = integer.valueof(array1[0]) * 3600 + integer.valueof(array1[1]) * 60 + integer.valueof(array1[2]);
int total2 = integer.valueof(array2[0]) * 3600 + integer.valueof(array2[1]) * 60 + integer.valueof(array2[2]);
return total1 >= total2;
}
簡單執行
public static void main(string args)
執行結果
false
private static void timedifference2() throws parseexception
計算結果
150.0
2.5
string型別的
public static listsortlistdesc(listlist) throws parseexception
date型別的
public static listsortlist(listlist) throws parseexception
執行結果
最近的時間為:2014-12-04 06:08:49
最遠的時間為:2004-04-04 10:34:41
最近的時間為:thu dec 04 06:08:49 cst 2014
最遠的時間為:sun apr 04 10:34:41 cst 2004
簡單記錄python的時間函式操作
1.time和datetime模組 import datetime,time 2.獲得當前時間 time.time 獲得當前時間,返回float型 time.localtime float time 獲得本地當前時間,返回time.struct time型別 說明 struct time是乙個唯讀的...
mysql 時間操作 mysql操作時間
select curdate 獲取當前日期 select last day curdate 獲取當月最後一天。select date add curdate interval day curdate 1 day 獲取本月第一天 select date add curdate day curdate ...
informix 資料庫 時間 日期簡單操作
today 當前日期 date sysdate current 當前時間 datetime select sysdate from test table 系統當前時間 select current from test table 系統當前時間 select today 1 from test tab...