• java 生成随机字符串


    1.生成之指定位数的随机字符串

     1     /**
     2      * 随机基数
     3      */
     4     private static char[] charset = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'g', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'G', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
     5  
     6   /**
     7      * 获取指定位数的随机字符串
     8      *
     9      * @param len 指定位数
    10      * @return
    11      */
    12     private static String getRandomStr(int len) {
    13         StringBuffer sb = new StringBuffer(len);
    14         for (int i = 0; i < 3; i++) {
    15             char c = charset[new Random().nextInt(charset.length)];
    16             sb.append(c);
    17         }
    18         return sb.toString();
    19     }

    2、指定位数补零

     1  /**
     2      * 不足指定位数前补0 
     3      *
     4      * @param length 长度
     5      * @param source 需要补位的数字
     6      * @return
     7      */
     8     private static String beforeZeroFill(int length, int source) {
     9         return String.format("%0" + length + "d", source);
    10     }
  • 相关阅读:
    WebUploader IE9下报错
    raphael 支持group(简)
    SVG image xlink:href 设置失败
    活动倒计时代码(精确到毫秒)jquery插件
    PHP连续签到
    PHP判断是否微新浏览器
    php中文匹配
    PHP+mysql统计排名第几位
    php随机抽奖实例分析
    类似a:hover的伪类的注解
  • 原文地址:https://www.cnblogs.com/lxn0216/p/9378611.html
Copyright © 2020-2023  润新知