java中日期與字串之間相應的轉換

2021-07-29 06:13:04 字數 775 閱讀 7127

一、將字串轉換成日期

string str="2012-09-08 10:10:10"

string pattern="yyyy-mm-dd hh:mm:ss"//格式也可以yyyy-mm-dd或yyyy-mm-dd hh:mm:ss

public static void strtodate(string str, string pattern)

二、將日期轉換成字串

long d='毫秒數' 

date date = new date(d);

public static void datetostr(date date, string pattern)

三、計算兩個日期相差的天數

public static int daysbetween(date startdate, date enddate)

四、給當前日期新增天數

public static date adddateday(date date, int day)

java中日期字串的相關計算

計算輸入日期的本週的星期一和星期日 dateformat sdf new dateformat yyyy mm dd 設定時間格式 time sdf.format new date date date null try catch parseexception e calendar cal cale...

GoLang中日期字串與時間戳轉換

待轉化為時間戳的字串 注意 這裡的小時和分鐘還要秒必須寫 因為是跟著模板走的 修改模板的話也可以不寫 location tobecharge 2015 01 01 00 00 00 轉化所需模板 timelayout 2006 01 02 15 04 05 重要 獲取時區 loc,time.load...

MySQL中日期與字串相互轉換

1 日期無需轉換查詢 日期在資料庫中的型別為字串 select from day where datetime 2016 03 15 2 使用date format select from day where date format datetime,y m d 2016 03 15 3 日期轉換還...