package cn.com.market.tools;
import java.text.SimpleDateFormat;
import java.util.Date;
public class StreamID {
//获取取连着的年月日时分秒+五位随机数
public static String getStreamid(){
Date date = new Date();
SimpleDateFormat sf = new SimpleDateFormat("yyyyMMddHHmmss");
int temp=(int)(Math.random()*100000);
while(temp/10000<1){
temp=(int)(Math.random()*100000);
}
return sf.format(date)+temp;
}
}