尝试将Unix timstamp从数据库转换为日期格式的String。
int _startTS = evtResult.getInt("start"); //outputs 1345867200
Long _sLong = new Long(_startTS); //outputs 1345867200
//I've also tried: Long _sLong = new Long(_startTS*1000); //outputs 1542436352
DateTime _startDate = new DateTime(_sLong); //outputs 1970-01-16T08:51:07.200-05:00
时间戳适用于:Sat, 25 Aug 2012
。我不知道为什么1970年总是输出,所以希望有人能看到我正在制造的一个愚蠢的错误。
答案 0 :(得分:56)
Unix时间以秒为单位,Java时间为毫秒
你需要将它加倍1000
DateTime _startDate = new DateTime(_sLong * 1000L);
您可能需要查看此answer
答案 1 :(得分:5)
Unix时间戳是自1970-01-01 00:00:00
以来 SECONDS 的数量。
DateTime(long instant)
构造函数需要 MILLISECONDS 的数量。
long _startTS = ((long) evtResult.getInt( "start" )) * 1000;
DateTime _startDate = new DateTime( _startTS );
编辑:或在evtResult
上使用getLong(..)方法,以避免演员阵容变长。
答案 2 :(得分:3)
执行此操作时:_startTS*1000
,Java假定您需要一个int,因为_startTS
是一个int(这就是为什么值为1542436352)。试着把它作为一个很长的第一个:
Long _sLong = new Long(((long)_startTS)*1000);