我编写了以下代码,以便从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
在结果变量中,如何直接将结果变量中的值转换为日期变量?
答案 0 :(得分:3)
Date只是long的包装器,包含许多毫秒。
您所看到的是Date对象的默认toString()
表示形式,它使用您的默认时区(IST)将日期转换为可读字符串。如果您希望使用GMT时区将日期表示为字符串,请执行您的操作:使用带有GMT时区的日期格式。
Date对象代表通用时间轴上的一个瞬间,并且没有任何时区。
答案 1 :(得分:3)
这是问题,概念上:
//date obtained here is in IST on my system which needs to be converted into GMT.
Date time = new Date(Long.valueOf(unixTimeStamp) * 1000);
Date
没有时区。这是你想要的价值。当您致电toString()
时,它将其转换为您当地的时区与其实际代表的价值无关。一个Date
只是自Unix时代(1970年1月1日,午夜UTC)以来的毫秒数。所以你的整个方法可以是:
private static Date convertToDate(String unixTimeStamp)
{
return new Date(Long.valueOf(unixTimeStamp) * 1000);
}
您不需要任何格式化程序,因为您并不是真的想要获得文本表示。
如果可以的话,我会建议您使用Joda Time进行日期/时间工作 - 这是一个更清洁的API。