肿瘤康复网,内容丰富有趣,生活中的好帮手!
肿瘤康复网 > gmt转换北京时间 java_android开发:GMT(格林威治标准时间)转换为北京时间

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

时间:2019-12-08 17:17:14

相关推荐

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

/**

* gmt(格林威治标准时间)转换当前北京时间

* 比如:1526217409 -->/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;

}

}

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

如果觉得《gmt转换北京时间 java_android开发:GMT(格林威治标准时间)转换为北京时间》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。