Java 時間工具類

2021-09-01 20:27:04 字數 2533 閱讀 8936

public class datetimeutil  else 

}public static string datetostring(date date) else

}public static string timetostring(date date) else

}public static date parse(string str) throws parseexception

public static date todate(string str) throws parseexception

public static date getdate(long num)

public static date todate(long num)

public static date todate()

public static string tostring(timestamp stamp)

public static date todate(timestamp stamp)

public static timestamp totimestamp(date date)

public static string currenttimekeyword()

public static string getcurrentdate()

public static string getcurrenttime()

/*** 格式化日期

* * @param date

* @return yyyy-mm-dd

*/public static string formatdate(integer date)

******dateformat sdf = new ******dateformat("yyyymmdd");

string string = "";

try catch (parseexception e)

return string;

}/**

* 格式化日期

* * @param date

* @return yyyy-mm-dd

*/public static string formatdate(string date)

******dateformat sdf = new ******dateformat("yyyymmdd");

string string = "";

try catch (parseexception e)

return string;

}/**

* 格式化日期

* * @param date

* @return yyyy-mm-dd

*/public static string formatdate(long date)

******dateformat sdf = new ******dateformat("yyyymmddhhmmss");

string string = "";

try catch (parseexception e)

return string;

}/**

* 格式化時間

* * @param time

* @return

*/public static string formattime(string time)

string timestring = "";

******dateformat sdf = new ******dateformat("hhmmss");

try catch (parseexception e)

return timestring;

}/**

* 驗證日期的合法性

* * @param date

* @return

*/public static boolean volidatedate(string date) else

} catch (parseexception e)

return ***;

}/**

* 當月第一天

* * @return

*/public static string getfirstday()

/*** 當月最後一天

* * @return

*/public static string getlastday()

/*** 得到某年某月的第一天

* * @param year

* @param month

* @return

*/public static string getfirstdayofmonth(int year, int month)

/*** 得到某年某月的最後一天

* * @param year

* @param month

* @return

*/public static string getlastdayofmonth(int year, int month)

java時間工具類

public class dateutils 獲取當天零時的時間 return public static date gettodaystart date date 獲取當前周的第一天零時 return public static date getcurrentweekstart date date...

java時間處理工具類

public class timehelper 預設當前時間 精確到秒 return 當前時間 public static string getnow 通過指定的格式獲取當前時間字串 param format 日期字串格式 return 當前時間字串 public static string get...

Java工具類 Java檔案工具類

public class fileutils 讀取檔案並作為byte返回 param file 目標檔案 return throws ioexception public static byte readfileasbytes file file throws ioexception 讀取檔案並作為...