博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
产生6位组合随机数
阅读量:5890 次
发布时间:2019-06-19

本文共 458 字,大约阅读时间需要 1 分钟。

private static String RandomAdminId() {

  String str = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  String strIndex = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  StringBuffer strB = new StringBuffer("");
  int index = (int) (51 * Math.random());
  strB.append(strIndex.charAt(index));
  for (int i = 0; i <= 4; i++) {
    int j = (int) (61 * Math.random());
    strB.append(str.charAt(j));
  }
  return strB.toString();
}

转载地址:http://eifsx.baihongyu.com/

你可能感兴趣的文章
作业抄袭简单检测
查看>>
ASP.NET 回调技术(CallBack)
查看>>
Spark源码分析 – BlockManager
查看>>
JS中的this
查看>>
人生, 不要在别扭的事上纠结
查看>>
C的面向对象编程
查看>>
日志服务器架构设计
查看>>
使用Unity开发Android的几种调试方法
查看>>
C++ 基础笔记(一)
查看>>
编译内核出错:invalid option `abi=aapcs-linux' 解决办法
查看>>
System.Func<>与System.Action<>
查看>>
[翻译] EnterTheMatrix
查看>>
asp.net开源CMS推荐
查看>>
我所思考的生活,致半年后的自己
查看>>
Python 学习书籍推荐
查看>>
csharp skype send message in winform
查看>>
jQuery plugin: Tablesorter 2.0
查看>>
csharp:datagridview enter Half Width and Full Width characters
查看>>
MMORPG 游戏服务器端设计--转载
查看>>
C#实现无标题栏窗体点击任务栏图标正常最小化或还原的解决方法
查看>>