这样的时间一般是最准确的。一下便是我整理的几种获取时间戳的办法。 SimpleDateFormat simpledataformat=new SimpleDateFormat("yyyy年MM月dd日HH时mm分ss秒E",Locale.getDefault()); 第一种 Long time1 = System.currentTimeMillis(); 第二种 Long time2 = new Date().getTime; (这里的new date()原理...