JAVA编程实现随机生成指定长度的密码功能【大小写和数字组合】

时间:2022-12-09 23:27:41

本文实例讲述了JAVA编程实现随机生成指定长度的密码功能。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import java.util.Random;
public class PassWordCreate {
  /**
   * 获得密码
   * @param len 密码长度
   * @return
   */
  public String createPassWord(int len){
    int random = this.createRandomInt();
    return this.createPassWord(random, len);
  }
  public String createPassWord(int random,int len){
    Random rd = new Random(random);
    final int maxNum = 62;
    StringBuffer sb = new StringBuffer();
    int rdGet;//取得随机数
    char[] str = { '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', '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', '4', '5', '6', '7', '8', '9' };
    int count=0;
    while(count < len){
      rdGet = Math.abs(rd.nextInt(maxNum));//生成的数最大为62-1
      if (rdGet >= 0 && rdGet < str.length) {
        sb.append(str[rdGet]);
        count ++;
      }
    }
    return sb.toString();
  }
  public int createRandomInt(){
    //得到0.0到1.0之间的数字,并扩大100000倍
    double temp = Math.random()*100000;
    //如果数据等于100000,则减少1
    if(temp>=100000){
      temp = 99999;
    }
    int tempint = (int)Math.ceil(temp);
    return tempint;
  }
  public static void main(String[] args){
    PassWordCreate pwc = new PassWordCreate();
    System.out.println(pwc.createPassWord(8));
  }
}

希望本文所述对大家java程序设计有所帮助。