java的日期時間處理
阿新 • • 發佈:2018-11-13
1. /*
* 將時間轉換為時間戳
*/
public static String dateToStamp(String s) throws ParseException{
String res;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = simpleDateFormat.parse(s);//注意s的格式
long ts = date.getTime();
res = String.valueOf(ts);
return res;
}
2. /*
* 將時間戳轉換為時間
*/
public static String stampToDate(String s){
String res;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
long lt = new Long(s);
Date date = new Date(lt);
res = simpleDateFormat.format(date);
return res;
}