// * 避免验证码重复点击

   2016/11/11 樊

// * @author

// *

// */

// public static class Utils{

// public static boolean isFastDoubleClick(){

// long time = System.currentTimeMillis();

// long timeD = time - lastClickTime;

// if(0 < timeD && timeD < 60000){

// return true;

// }

// lastClickTime = time;

// return false;

//   }

// }

你可能感兴趣的:(// * 避免验证码重复点击)