日期型別轉換

2021-06-17 15:44:53 字數 2104 閱讀 7700

public static final int hours = 0;

public static final int minutes = 1;

/**

* 將字串轉換成日期格式

* @param date

* @param format

* @return

* @throws exception

*/public static date parsedate(string date,string format) throws exception

******dateformat datetostring=new ******dateformat(format);

return datetostring.parse(date);

}

/**

* 轉date為字串

* @param date 要轉換的date

* @param format 格式,傳null表示用"yyyy-mm-dd hh:mm:ss.sssz"為預設格式

* @return 格式化以後的字串日期

*/public static string changedate(date date,string format)

******dateformat datetostring=new ******dateformat(format);

return datetostring.format(date);

}

/**

* 改變時間,返回改變後的字串

* @param date 要改變的date

* @param time 改多少(正加,負減)

* @param type 改什麼(小時,分鐘)

* @param format 返回字串的格式,傳null表示用"yyyy-mm-dd hh:mm:ss.sssz"為預設格式

* @return 改變後的字串

*/public static string addtime(date date, int time, int type, string format)

return changedate(c.gettime(),format);

}

/**

* 把當地格林威治時間字串轉化為gmt-0的時間字串,用於儲存到資料庫

* @param param 格林威治格式的時間字串[例:2012-11-27 10:11:45.038+0800/2012-11-27 10:11:45.038+08]

* @return 對應的gmt-0的時間字串

* @throws exception

*/public static string maketimezonetozero(string param) throws exception

/*** 把當地格林威治時間字串轉化為gmt-0的時間字串,用於儲存到資料庫

* @param param 格林威治格式的時間字串

* @param format 傳入日期的格式

* @return 對應的gmt-0的時間字串

* @throws exception

*/public static string maketimezonetozero(string param,string format,string resultformat) throws exception

/*** 把資料庫中gmt-0的時間轉戶為使用者給的時區的時間字串

* @param param 資料庫中的gmt-0時間

* @param timezone 時區[-12...,-8,...,-1,0,1,.....,8,.....12]

* @return 相應時區的時間字串

* @throws exception

*/public static string maketimezonetolocal(string param,int timezone) throws exception

js日期型別轉換

日期型別轉換格式函式 date.prototype.format function dt if y test dt dt dt.replace regexp.1,this.getfullyear substr 4 regexp.1.length for var k in o if new regex...

日期型別轉換(1)

oracle日期時間函式大全 oracle日期時間函式大全 year yy two digits 兩位年 顯示值 07 yyy three digits 三位年 顯示值 007 yyyy four digits 四位年 顯示值 2007 month mm number 兩位月 顯示值 11 mon ...

Python 日期型別轉換

從資料庫中查詢出的日期格式是 fri 12 jul 2019 00 00 00 gmt 需要轉換成 2019 07 12 d fri 12 jul 2019 00 00 00 gmt gmt format a d b y h m s gmt date1 datetime.datetime.strpt...