Java计算程序运行时间
Posted 老王学Java
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java计算程序运行时间相关的知识,希望对你有一定的参考价值。
public class SumTime
public static void main(String []args) throws ParseException
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
String startTime = df.format(new Date());
System.out.println(startTime);
System.out.println("12312312312312");
Date date1 = new Date();
String endTime = df.format(date1);
System.out.println(endTime);
// SumTimes(startTime,endTime);
public void SumTimes(String startTime,String endTime) throws ParseException
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date now = df.parse(startTime);
Date date=df.parse(endTime);
long l=now.getTime()-date.getTime();
long day=l/(24*60*60*1000);
long hour=(l/(60*60*1000)-day*24);
long min=((l/(60*1000))-day*24*60-hour*60);
long s=(l/1000-day*24*60*60-hour*60*60-min*60);
System.out.println(""+day+"天"+hour+"小时"+min+"分"+s+"秒");
以上是关于Java计算程序运行时间的主要内容,如果未能解决你的问题,请参考以下文章