随机生成 imsi imei mac

http://blog.csdn.net/argonwu/article/details/42971909




private static String getIMEI() {// calculator IMEI

int r1 = 1000000 + new java.util.Random().nextInt(9000000);
int r2 = 1000000 + new java.util.Random().nextInt(9000000);
String input = r1 + "" + r2;
char[] ch = input.toCharArray();
int a = 0, b = 0;
for (int i = 0; i < ch.length; i++) {
int tt = Integer.parseInt(ch[i] + "");
if (i % 2 == 0) {
a = a + tt;
} else {
int temp = tt * 2;
b = b + temp / 10 + temp % 10;
}
}
int last = (a + b) % 10;
if (last == 0) {
last = 0;
} else {
last = 10 - last;
}
return input + last;
}


private static String getImsi() {
// 460022535025034
String title = "4600";
int second = 0;
do {
second = new java.util.Random().nextInt(8);
} while (second == 4);
int r1 = 10000 + new java.util.Random().nextInt(90000);
int r2 = 10000 + new java.util.Random().nextInt(90000);
return title + "" + second + "" + r1 + "" + r2;
}
private static String getMac(){
char[] char1 = "abcdef".toCharArray();
char[] char2 = "0123456789".toCharArray();
StringBuffer mBuffer = new StringBuffer();
for (int i = 0; i < 6; i++) {
int t = new java.util.Random().nextInt(char1.length);
int y = new java.util.Random().nextInt(char2.length);
int key = new java.util.Random().nextInt(2);
if (key ==0) {
mBuffer.append(char2[y]).append(char1[t]);
}else {
mBuffer.append(char1[t]).append(char2[y]);
}

if (i!=5) {
mBuffer.append(":");
}
}
return mBuffer.toString();
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值