我正在尝试转换以下纪元时间
1382364283
将其插入在线转换器时,它会给我正确的结果。
2013 年 10 月 21 日 15:00:28
但是下面的代码
Long sTime = someTime/1000;
int test = sTime.intValue(); // Doing this to remove the decimal
Date date = new Date(test);
DateFormat format = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
String formatted = format.format(date);
this.doorTime = formatted;
退货
16/01/1970 17:59:24
我已经尝试了其他几种方法来转换它,有什么我遗漏的吗?