通用日期格式化工具類DateUtil

2021-07-30 03:41:46 字數 993 閱讀 7206

public

class

dateutil

if (date != null) else

}public

static string datetostring(date date)

/**得到格式化物件

*/public

static ******dateformat get******dateformat(final string pattern)

};sdfmap.put(pattern,t1);

}return t1.get();}}

/**字串轉時間

*/public

static date stringtodate(string date,string pattern) throws parseexception

return get******dateformat(pattern).parse(date);}/*

*字串轉時間

*/public

static date stringtodate(string date)

if (date.length() == date_default_format.length()) }}

/**獲取當天日期

*/public

static string gettoday(string pattern)

}

方法的引數使用final修飾含義:

主要分為兩種情況:1.修飾基本資料型別;2.修飾引用型別。

修飾基本資料型別:

引數的值在方法體內是不能被修改的,即不能被重新賦值,否則編譯不通過。

修飾引用資料型別:

引數變數所引用的物件是不能被改變的。

作為引用的拷貝,引數在方法體裡面不能再引用新的物件,否則編譯不通過。

final變數不可修改。

final方法不可覆蓋。

final類不可繼承。

java日期格式化工具類

日期工具類 預設使用 yyyy mm dd hh mm ss 格式化日期 author public final class dateutils 根據預設格式返回當前日期 return public static string getnow 根據使用者格式返回當前日期 param format re...

數字格式化工具類

數字格式化工具類.public abstract class numberutils param doublestr param pattern return public static string format string doublestr,string pattern catch numb...

寫入資料的工具類和日期格式化工具類

coding utf 8 寫入資料的工具類 class filemanager object 儲存檔案的名稱 filename student.txt 寫乙個寫入資料的介面 classmethod def write cls,content,split n param content 要寫入的資料 ...