我在 Mongo DB 中有一个名为 updated_at 的字段
它将以这种方式在数据库中查找
updated_at : NumberLong("1355754242785")
这个 Updated_at 文件是以这种方式在数据库中创建的
长现在 = System.currentTimeMillis();
从其中一个 DB Record 中,我将一个值设为
updated_at" : NumberLong("1355754242785"), "volatility12" : "na", "vwap" : "0", "wk52hi" : "0", "wk52hidate" : "----"}
例如说它的值为 1355754242785
更新时是否可以转换 1355754242785 ?
当我尝试转换
public class Aim {
public static void main(String[] args) {
DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss.SSS");
long now = 1355754242785; // Error here saying out of range
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(now);
System.out.println(now + " = " + formatter.format(calendar.getTime()));
}
}