当前位置: 代码迷 >> Web前端 >> Java耗时计算方法撮要
  详细解决方案

Java耗时计算方法撮要

热度:171   发布时间:2012-09-06 10:37:01.0
Java耗时计算方法摘要
package com.happy.sqlite.test;

import java.util.Calendar;

public class LostTime {
	@SuppressWarnings("static-access")
	public static void main(String[] args) {
		long t1 = System.currentTimeMillis(); // 排序前取得当前时间

		try {
			Thread.currentThread().sleep(3160);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}

		long t2 = System.currentTimeMillis(); // 排序后取得当前时间

		Calendar c = Calendar.getInstance();
		c.setTimeInMillis(t2 - t1);

		System.out.println("耗时: " + c.get(Calendar.MINUTE) + "分 "
				+ c.get(Calendar.SECOND) + "秒 " + c.get(Calendar.MILLISECOND)
				+ " 毫秒");
	}
}
  相关解决方案