-
Date
類型轉(zhuǎn)換成Long
類型贩绕,長度為13,表示毫秒;如果想獲得秒數(shù)舷礼,只需要除以1000
new Date().date.getTime();
-
Long
類型轉(zhuǎn)換成Date
類型
SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = new Date(mseconds * 1000); // 轉(zhuǎn)為java.util.Date類型
sdf.format(date);
-
String
類型轉(zhuǎn)換成Date
類型
String str="2015-08-31 21:08:06";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = (Date) sdf.parse(str);
-
Date
類型轉(zhuǎn)換成String
類型
DateFormat dateFormat = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
String strDate = dateFormat.format(date);