根據時間引數判斷時分秒是否在指定範圍內

2021-10-07 05:09:10 字數 919 閱讀 4661

這裡直接貼**了,記錄一下

/**

* 判斷時間是否在時間段內

* param date 當前時間 yyyy-mm-dd hh:mm:ss

** @param strdatebegin 開始時間 00:00:00

* @param strdateend 結束時間 00:05:00

* @return

*/private

boolean

isindate

(localdatetime date, string strdatebegin, string strdateend)

else

if(strdateh == strdatebeginh && strdatem >= strdatebeginm

&& strdatem <= strdateendm)

else

if(strdateh == strdatebeginh && strdatem == strdatebeginm

&& strdates >= strdatebegins && strdates <= strdateends)

// 當前時間小時數大等於開始時間小時數,等於結束時間小時數,分鐘數小等於結束時間分鐘數

else

if(strdateh >= strdatebeginh && strdateh == strdateendh

&& strdatem <= strdateendm)

else

if(strdateh >= strdatebeginh && strdateh == strdateendh

&& strdatem == strdateendm && strdates <= strdateends)

else

}else

}

PHP獲取指定時間段之間的 年,月,天,時,分,秒

需求 前端傳倆個標準的 時間格式過來,格式像2009 05 12 12 12 30,然後根據需要返回這個時間段的不同單位的表示 對於時間格式的校驗我這裡 沒貼出來,所以用的時候自己考慮加上 class utils 根據倆個時間獲取倆個時間的 包含的 年,月數,天數,小時,分鐘,秒 param str...

如何取的指定年月日時分秒後的時間

因為需要計算當前日期之後日期的一天0點,到一年之後的今天這個時間點。所以用到了下面的方式。主要用到的是calendar的add 方法,可以增減年月日,甚至時分秒。所以把 貼出來 public class dateutils catch parseexception ex calendar c cal...

java判斷當前時間是否在指定時間範圍內的例項

有些時候,要判斷當前時間是否在乙個時間範圍內,比如時間範圍是 08 00 20 00 在這個範圍內是營業時間,如果不在則說明打烊了.下面是 string businesstime 08 00 20 00 string strs businesstime.split string strs1 strs...