CountDownTimer.java 267 Bytes
package com.ectrip.cyt.utils;

/**
 * @author jigo
 *网络计时
 */
public class CountDownTimer {
	public static long firstTime=0;
	public static long endTime=0;
	public static void timeDifference(){
		System.out.println((endTime-firstTime)+"CountDownTimer");
	}
}