gpt4 book ai didi

java - 从 unix 时间戳获取 GMT 日期

转载 作者:行者123 更新时间:2023-12-02 07:35:40 24 4
gpt4 key购买 nike

<分区>

我编写了以下代码以从 unix 时间戳获取 GMT 日期

private Date converToDate(String unixTimeStamp)
{
//unix timestamps have GMT time zone.
DateFormat gmtFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
gmtFormat.setTimeZone(TimeZone.getTimeZone("GMT"));

//date obtained here is in IST on my system which needs to be converted into GMT.
Date time = new Date(Long.valueOf(unixTimeStamp) * 1000);

String result = gmtFormat.format(time);

return lineToDate(result, true);
}

这段代码在执行时有

Mon May 27 02:57:32 IST 2013 

日期变量中的值和

Sun May 26 21:27:32 GMT 2013

在result变量中,如何直接将result变量中的值取到date变量中?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com