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

Java时间和时间戳的相互转换

程序员文章站 2022-06-22 13:17:24
时间戳转换为时间: 时间转换为时间戳: 转载:https://www.cnblogs.com/mstk/p/5511057.html ......

时间戳转换为时间:

/* 
     * 将时间戳转换为时间
     */
    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;
    }

时间转换为时间戳:

/* 
     * 将时间转换为时间戳
     */    
    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;
    }

转载: