java日期獲取

2021-08-30 21:16:15 字數 1309 閱讀 1216

public class timetest

/**

* 得到二個日期間的間隔天數

*/ public static string gettwoday(string sj1, string sj2) catch (exception e)

return day + "";

} /**

* 根據乙個日期,返回是星期幾的字串

*/ public static string getweek(string sdate)

/**

* 將短時間格式字串轉換為時間 yyyy-mm-dd

*/ public static date strtodate(string strdate)

/**

* 兩個時間之間的天數

*/ public static long getdays(string date1, string date2) catch (exception e)

long day = (date.gettime() - mydate.gettime()) / (24 * 60 * 60 * 1000);

return day;

} // 計算當月最後一天,返回字串

public string getdefaultday()

// 上月第一天

public string getpreviousmonthfirst()

//獲取當月第一天

public string getfirstdayofmonth()

// 獲得本週星期日的日期

public string getcurrentweekday()

//獲取當天時間

public string getnowtime(string dateformat)

// 獲得當前日期與本週日相差的天數

private int getmondayplus() else

} //獲得本周一的日期

public string getmondayofweek()

//獲得相應周的週六的日期

public string getsaturday()

// 獲得上週星期日的日期

public string getpreviousweeksunday()

// 獲得上週星期一的日期

public string getpreviousweekday()

// 獲得下週星期一的日期

public string getnextmonday()

java日期獲取

在開發過程中,我們經常碰到需要獲取當前時間的情況,具體操作如下 如果單單是或缺年,月,日,可以用calender calendar now calendar.getinstance integer intyear now.get calendar.year string year intyear.t...

java 獲取昨天日期

取昨天的日期,本想的截出來日期減一就好了。又一想不對,如果今天是一號怎麼辦?現有兩個辦法 1 date as new date newdate gettime 24 60 60 1000 dateformat matter1 new dateformat yyyy mm dd string time...

Java獲取系統日期時間

方法一 利用calendar類來獲取當前日期和時間,如下 獲取系統時間 return public string getdate 方法二 利用date類來獲取當前日期時間,並通過 dateformat類來格式化輸出,如下 獲取當前系統時間 return public string getdate 上...