赞
踩
获取随机4位随机long
Random rd=new Random(); for (int i=1;i<100;i++){ //方式一 long l1=(int)(Math.random()*9000+1000); //方式二 long l2=rd.nextInt(9000)+1000; }
如果要调整长度,将上述的9000、1000进行调整即可。