java 生成8位数字作为UID

java 生成8位数字作为UUID:

/***
* 生成uid 8位数字
*/
public static String generateUID(){
Random random = new Random();
String result="";
for(int i=0;i<8;i++){
//首字母不能为0
result += (random.nextInt(9)+1);
}
return result;
}

posted on 2016-12-15 20:33  防空洞123  阅读(8498)  评论(1编辑  收藏  举报

导航