尝试将 Unix 时间戳记从数据库转换为日期格式的字符串时。
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 总是输出所以希望有人能看到我犯的一个愚蠢的错误。