美文网首页
java中生成随机字符串

java中生成随机字符串

作者: 特_尼 | 来源:发表于2018-09-30 09:44 被阅读0次

    java中生成随机字符串有三中方法:

    1、生成的字符串每个位置都有可能是str中的一个字母或数字,需要导入的包是import java.util.Random;

    //length用户要求产生字符串的长度
     public static String getRandomString(int length){
         String str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
         Random random=new Random();
         StringBuffer sb=new StringBuffer();
         for(int i=0;i<length;i++){
           int number=random.nextInt(62);
           sb.append(str.charAt(number));
         }
         return sb.toString();
     }
    
    ---------------------
    
    本文来自 小明明明明明 的CSDN 博客 ,全文地址请点击:
    https://blog.csdn.net/fighter1226/article/details/71125150?utm_source=copy 
    

    2、可以指定某个位置是a-z、A-Z或是0-9,需要导入的包是import java.util.Random;

    //可以指定字符串的某个位置是什么范围的值
     public static String getRandomString2(int length){
        Random random=new Random();
        StringBuffer sb=new StringBuffer();
        for(int i=0;i<length;i++){
           int number=random.nextInt(3);
           long result=0;
           switch(number){
              case 0:
                  result=Math.round(Math.random()*25+65);
                  sb.append(String.valueOf((char)result));
                  break;
             case 1:
                 result=Math.round(Math.random()*25+97);
                 sb.append(String.valueOf((char)result));
                 break;
             case 2:     
                 sb.append(String.valueOf(new Random().nextInt(10)));
                 break;
            }
    
    
         }
         return sb.toString();
     }
    
    ---------------------
    
    本文来自 小明明明明明 的CSDN 博客 ,全文地址请点击:
    https://blog.csdn.net/fighter1226/article/details/71125150?utm_source=copy 
    

    3、org.apache.commons.lang包下有一个RandomStringUtils类,其中有一个randomAlphanumeric(int length)函数,可以随机生成一个长度为length的字符串。(推荐)

    String filename=RandomStringUtils.randomAlphanumeric(10);
    

    相关文章

      网友评论

          本文标题:java中生成随机字符串

          本文链接:https://www.haomeiwen.com/subject/hkwioftx.html