java 字串和日期型別的相互轉換問題

2021-04-17 09:13:03 字數 426 閱讀 8231

date indate = new date();   //獲取當前日期  

//建立乙個一定格式的 ******dateformat   

******dateformat f = new ******dateformat("yyyy-mm-dd hh:mm:ss");   

string date = f.format(indate);  //將date轉化為字串   

system.out.println(date);        //輸出      

date odate = null;   

try catch (parseexception e1) {      

e1.printstacktrace();   

system.out.println(odate.tostring());  //輸出

日期 字串 相互轉換

獲取系統日期 sysdate 格式化日期 to char sysdate yy mm dd hh24 mi ss 或 to date sysdate yy mm dd hh24 mi ss 格式化數字 to number 注 to char 把日期或數字轉換為字串 to char number,格式...

mysql日期和字串相互轉化

目的 整理mysql中日期和字串的相互轉化的一些函式 一 日期轉字串 1 函式 date format date,format 2 例 select date format now y m d h i s 結果 2017 10 29 14 02 54 select date format now y...

java 時間戳與日期字串相互轉換

時間戳轉換成日期格式字串 param seconds 精確到秒的字串 param formatstr return public static string timestamp2date string seconds,string format if format null format.isemp...