时间转换
1.获取时间戳
String stamp = String.valueOf(System.currentTimeMillis());
2.时间字符串转时间戳
/*
* 将时间转换为时间戳
* s: 时间字符串
* type: "yyyy-MM-dd",时间的类型
*/
public String dateToStamp(String s,String type) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(type, Locale.CHINA);
Date date = null;
try {
date = simpleDateFormat.parse(s);
long ts = date.getTime(
return String.valueOf(ts));
} catch (ParseException e) {
e.printStackTrace();
}
return null;
}
3.时间戳转时间字符串
/*
* 将时间戳转换为时间
*/
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;
}
前段时间还看过博客,似乎 yyyy-MM-dd 里面有一个冷僻的坑,就是YYYY和小yyyy的不同,YYYY是当前周所属的年份。如果当前是2019-12-31,使用YYYY就会变成2010-12-31了。似乎,逆向的话也有问题。