java把时间戳转换成时间
Posted Firm陈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java把时间戳转换成时间相关的知识,希望对你有一定的参考价值。
java中时间精确到毫秒级,所以需求时间需要 除以1000
//将时间转换为时间戳
public static String dateToStamp(String s) throws Exception
String res;
//设置时间格式,将该时间格式的时间转换为时间戳
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = simpleDateFormat.parse(s);
long time = date.getTime();
res = String.valueOf(time);
return res;
//将时间戳转换为时间
public static String stampToTime(String s) throws Exception
String res;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
long lt = new Long(s);
//将时间戳转换为时间
Date date = new Date(lt);
//将时间调整为yyyy-MM-dd HH:mm:ss时间样式
res = simpleDateFormat.format(date);
return res;
以上是关于java把时间戳转换成时间的主要内容,如果未能解决你的问题,请参考以下文章
时间戳以字符串类型(带有小数点)存储在hive里,现在要把时间戳字段转换成时间,要用啥函数,求转换!