輸入周獲取週數的開始時間和結束時間減6天再算就好

2021-08-18 21:38:12 字數 925 閱讀 1798

草率的寫了一下

通過輸入的週數,獲取選擇週數的開始時間可結束時間

周的結束時間(週數*7=天數)               周的開始時間

(週數*7=天數) 

* 輸入週數 開始 42周*7 = 294-7

*/string starttime = getdatestr("2018-12-31", (294 - 7));

/*** 輸入週數 結束 42周*7 = 294-1

*/string stoptime = getdatestr("2018-12-31", 294 - 1);

mylog.e("周的開始時間____" + starttime);

mylog.e("周的結束時間____" + stoptime);

}/**

* @param day

* @param dayaddnum

* @return

*/public static string getdatestr(string day, long dayaddnum) catch (parseexception e)

date newdate2 = new date(nowdate.gettime() + dayaddnum * 24 * 60 * 60 * 1000);

******dateformat ******dateformat = new ******dateformat("yyyy-mm-dd");

string dateok = ******dateformat.format(newdate2);

return dateok;

}

mysql獲取昨天的開始時間結束時間

前一天的開始時間 date add str to date date format now y m d y m d h i s interval 1 day 前一天的結束時間 date add date add str to date date format date sub now interva...

android 獲取指定月份的開始時間 結束時間

根據提供的年月日獲取該月份的第一天 description 這裡用一句話描述這個方法的作用 author gyz since 2017 1 9下午2 26 57 param date return public static string getsupportbegindayofmonth date...

php獲取今日開始時間戳和結束時間戳

php獲取今日開始時間戳和結束時間戳 begintoday mktime 0,0,0,date m date d date y endtoday mktime 0,0,0,date m date d 1,date y 1 php獲取昨日起始時間戳和結束時間戳 beginyesterday mktim...