欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java 时间与时间戳之间的转换

程序员文章站 2022-05-02 17:13:01
...

java 时间与时间戳之间的转换

时间戳是我们最常用的关于时间的一种格式,时间戳在应用上非常方方便,也非常精确,所以被防范应用,但是时间戳是一般人读不懂的一串字符,要变为我们日常的时间格式,就需要转换。不说其他了,立刻奉上转换过程:

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);
        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;
    }

3、写个Main方法运行一下,哈哈
java 时间与时间戳之间的转换
4、结果出来了,OK!
java 时间与时间戳之间的转换

总结:分享到此结束了,欢迎评论切磋,也欢迎关注公众号:如斯而已,不仅仅是技术,还有生活的态度,生活的方式。

java 时间与时间戳之间的转换