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

android开发:GMT(格林威治标准时间)转换为北京时间

程序员文章站 2022-05-01 18:16:19
android开发:gmt(格林威治标准时间)转换为北京时间。 public class timeutils { /** * gmt(格林威治标准时间)转换当前北京时间...

android开发:gmt(格林威治标准时间)转换为北京时间。

public class timeutils {

    /**
     * gmt(格林威治标准时间)转换当前北京时间
     * 比如:1526217409 -->2018/5/13 21:16:49 与北京时间相差8个小时,调用下面的方法,是在1526217409加上8*3600秒
     * @param gmt 秒单部位
     * @return
     */
    public static string stamptodate(string gmt) {

        long lt = long.parselong(gmt)+8*3600;
        string res = null;
        try {
            simpledateformat simpledateformat = new simpledateformat("yyyy-mm-dd hh:mm:ss");

            res = simpledateformat.format(lt*1000);
        }catch (exception e){
            e.printstacktrace();
        }

        return res;
    }
}