Date 日期轉換和簡單計算

2022-04-08 12:16:56 字數 808 閱讀 6882

/**

* 判斷是否為閏年

* @param year

* @return

*/public boolean isleap ( int year )

if ( (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0) )

return true;

else

return false;

/*** 判斷某年某月總天數

* @param year

* @param month

* @return

*/public int getdays ( int year , int month )     catch (exception e)

//兩個date()相加減

public static void main(string args) catch (parseexception e)

//輸入某人生日計算實際年齡

public static int getage(string date)

return age;

} catch (exception e)

轉成這樣時間格式:二〇一四年九月二十一日

this.getcurrentdate =function() 

result += "年";

if (m.length == 2)

} else

if (d.length == 2) else

returnresult;

};

日期Date和String之間轉換

string轉為date string birthday dateformat fmt new dateformat yyyy mm dd date date fmt.parse birthday date轉為string dateformat dateformat new dateformat y...

Date相關日期格式轉換

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 所以獲取當前月份是mydate.getmonth 1 mydate.ge...

日期Date和字串之間轉換

date string 格式化 public final string format date date string date 解析 public date parse string source dateforamt 可以進行日期和字串的格式化和解析,但是由於是抽象類,所以使用具體子類 date...