当前位置: 移动技术网 > IT编程>移动开发>Android > android开发:GMT(格林威治标准时间)转换为北京时间

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

2018年09月12日  | 移动技术网IT编程  | 我要评论

唐龙视频,苗圩是谁的女婿,迈尔斯刷什么

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

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网