后台统计方法执行时间,显示为秒级别 long startTime=System.currentTimeMillis();//执行方法long endTime=System.currentTimeMillis();float excTime=(float)(endTime-startTime)/1000;System.out.println(excTime);
long startTime=System.currentTimeMillis(); //执行方法 long endTime=System.currentTimeMillis(); float excTime=(float)(endTime-startTime)/1000; System.out.println(excTime);