//方法 一(效率高) System.currentTimeMillis(); //方法 二(效率低) Calendar.getInstance().getTimeInMillis(); //方法 三(效率高) new Date().getTime();