当前位置:   article > 正文

随机生成8位数(包含字母和数字)_c#生成随机8位

c#生成随机8位
  1. String[] chars = new String[] { "a", "b", "c", "d", "e", "f",
  2. "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
  3. "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5",
  4. "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I",
  5. "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V",
  6. "W", "X", "Y", "Z" };
  7. StringBuffer shortBuffer = new StringBuffer();
  8. String uuid = UUID.randomUUID().toString().replace("-", "");
  9. for (int i = 0; i < 8; i++) {
  10. String str = uuid.substring(i * 4, i * 4 + 4);
  11. int x = Integer.parseInt(str, 16);
  12. shortBuffer.append(chars[x % 0x3E]);
  13. }
  14. String suffix = shortBuffer.toString();

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/169860
推荐阅读
相关标签
  

闽ICP备14008679号