統計時間周,月的計算

2021-04-14 02:41:00 字數 847 閱讀 4212

計算周: getdateinweek()和dateadd()兩個方法

//返回乙個日期字串在星期中的順序

public static int getdateinweek(string strdate)

catch (parseexception e) }

//乙個日期上加天數

public static string dateadd(string startdate, int dd)

catch (exception ex)

calendar calendar = calendar.getinstance();

calendar.settime(date);

calendar.add(calendar.date, dd);

string mm = string.valueof(calendar.get(calendar.month) + 1);

if (mm.length() == 1)

string day = string.valueof(calendar.get(calendar.date));

if (day.length() == 1)

string returndate = string.valueof(calendar.get(calendar.year)) + "-" + mm

+ "-" + day;

return returndate; }

計算月:getcurrenttime("yyyy-mm");返回年-月格式的時間.再將資料庫中時間substring(),然後比較.

public static string getcurrenttime(string style)

使用Spring AOP新增統計時間的功能

最近有個需求,需要統計各個介面 類的方法的執行時間,但是要盡量不影響原來業務,不改變原有 spring提供了4種實現aop的方式 1.經典的基於 的aop 2.aspectj註解驅動的切面 3.純pojo切面 4.注入式aspectj切面 我這裡講到的是使用 aspectj註解驅動的方式,其他的可以...

lua 計算倒計時,天 周 月倒計時

通過伺服器時間 獲得明天零點的時間戳 function getnextdayzerotime timenum 獲得當前伺服器的時間 local t1 timenum if not t1 then t1 systemtime end 獲得時間格式 local tab os.date t t1 tab....

計算倆個時間之間的時間差(計算總計時間)

今天要計算乙個時間的總用時長,想了一下寫了乙個方法,記錄一下,在這裡的時間的事是 yyyy mm dd hh mm ss 最後計算的總時長是小時 分 秒 首先我們將倆個事件轉成date形式,然後獲取毫秒數,再進行計算 public static string duration string star...