时间戳与日期相互转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳与日期相互转换相关的知识,希望对你有一定的参考价值。
public static String timeStamp2Date(Long seconds) {
if(null==seconds){
return "";
}
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Long time = new Long(seconds);
String d = format.format(time);
return d;
}
}
http://blog.csdn.net/heng615975867/article/details/36016617
以上是关于时间戳与日期相互转换的主要内容,如果未能解决你的问题,请参考以下文章