我编写了以下代码以从 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
在结果变量中,如何将结果变量中的值直接获取到日期变量中?