/**
* @Title: getDateAddFiveRandomCode
* @Description: 根据当前时间获取随机数:当前时间+5位随机数
* @return String 返回类型
* @date 2017年7月13日 上午9:16:14
* @throws
*/
public static String getDateAddFiveRandomCode(){
int randomNum=(int)(Math.random()*90000)+10000;
String date= new SimpleDateFormat("yyyyMMddHHmmss").format(Calendar.getInstance().getTime());
return date+randomNum;
}
/**
* @Title: getDateAddThreeRandomCode
* @Description: 根据当前时间获取随机数:当前时间+3位随机数
* @return String 返回类型
* @date 2017年7月13日 上午9:16:14
* @throws
*/
public static String getDateAddThreeRandomCode(){
int randomNum=(int)(Math.random()*900)+100;
String date= new SimpleDateFormat("yyyyMMddHHmmss").format(Calendar.getInstance().getTime());
return date+randomNum;
}