zoukankan      html  css  js  c++  java
  • java生成字母首位8位随机码

    public String getRedomchar(){
    String[] char1 = new String[] { "a", "b", "c", "d", "e", "f",
    "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
    "t", "u", "v", "w", "x", "y", "z", "0", "A", "B", "C", "D", "E", "F", "G", "H", "I",
    "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V",
    "W", "X", "Y", "Z"};
    String[] chars = new String[] { "a", "b", "c", "d", "e", "f",
    "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
    "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "5",
    "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I",
    "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V",
    "W", "X", "Y", "Z","!", "@", "#", "$", "%", "^", "&", "*", "(", ")",
    "_", "+", "-","=","`","~",",",".","<",">","/","?",":",";","'","\","。","|"};
    StringBuffer shortBuffer = new StringBuffer();
    String random = "";
    int index1 = (int) (Math.random() * char1.length);
    random = char1[index1];
    shortBuffer.append(random);
    LogUtil.writeLog("第一个字母:"+shortBuffer);
    for (int i = 1; i <=7; i++) {
    int index = (int) (Math.random() * chars.length);
    random = chars[index];
    shortBuffer.append(random);
    }
    LogUtil.writeLog("拼成后的8个随机码:"+shortBuffer);
    String suffix = shortBuffer.toString();
    return suffix;
    }

  • 相关阅读:
    python字典实现原理-哈希函数-解决哈希冲突方法
    ElasticSearch-倒排索引
    ElasticSearch-核心概念
    MarkdownPad2基础语法
    下载python3.6,进行编译安装,运行django程序
    linux-指令1
    注解和反射
    Htlm和Css
    JAVASE加强
    网络编程
  • 原文地址:https://www.cnblogs.com/guangxiang/p/9322385.html
Copyright © 2011-2022 走看看