Java生成随机密码

public class PasswordGeneratorUtil
{
    //密码能包含的特殊字符
    public static final char[] allowedSpecialCharactors = {
        '`', '~', '@', '#', '$', '%', '^', '&',
        '*', '(', ')', '-', '_', '=', '+', '[',
        '{', '}', ']', '\\', '|', ';', ':', '"',
        '\'', ',', '<', '.', '>', '/', '?'};

    private static final int letterRange = 26;

    private static final int numberRange = 10;

    private static final int spCharactorRange = allowedSpecialCharactors.length;

    private static final Random random = new Random();

    /**
     * 密码的长度
     */
    private int passwordLength;

    /**
     * 密码包含字符的最少种类
     */
    private int minVariousType;

    /**
     * <构造函数>
     *
     * @param passwordLength 密码的长度
     * @param minVariousType 密码包含字符的最少种类
     */
    public PasswordGeneratorUtil(int passwordLength, int minVariousType)
    {
        if (minVariousType > CharactorType.values().length)
            minVariousType = CharactorType.values().length;
        if (minVariousType > passwordLength)
            minVariousType = passwordLength;
        this.passwordLength = passwordLength;
        this.minVariousType = minVariousType;
    }

    /**
     * <生成随机密码>
     *
     * @return 密码
     * @throws
     */
    public String generateRandomPassword()
    {
        char[] password = new char[passwordLength];
        List<Integer> pwCharsIndex = new ArrayList();
        for (int i = 0; i < password.length; i++)
        {
            pwCharsIndex.add(i);
        }
        List<CharactorType> takeTypes = new ArrayList(Arrays.asList(CharactorType.values()));
        List<CharactorType> fixedTypes = Arrays.asList(CharactorType.values());
        int typeCount = 0;
        while (pwCharsIndex.size() > 0)
        {
            int pwIndex = pwCharsIndex.remove(random.nextInt(pwCharsIndex.size()));//随机填充一位密码
            Character c;
            if (typeCount < minVariousType)
            {//生成不同种类字符
                c = generateCharacter(takeTypes.remove(random.nextInt(takeTypes.size())));
                typeCount++;
            }
            else
            {//随机生成所有种类密码
                c = generateCharacter(fixedTypes.get(random.nextInt(fixedTypes.size())));
            }
            password[pwIndex] = c.charValue();
        }
        return String.valueOf(password);
    }

    /**
     * <获取字符>
     *
     * @param type 字符类型
     * @return 字符
     * @throws
     */
    private Character generateCharacter(CharactorType type)
    {
        Character c = null;
        int rand;
        switch (type)
        {
            case LOWERCASE://随机小写字母
                rand = random.nextInt(letterRange);
                rand += 97;
                c = new Character((char)rand);
                break;
            case UPPERCASE://随机大写字母
                rand = random.nextInt(letterRange);
                rand += 65;
                c = new Character((char)rand);
                break;
            case NUMBER://随机数字
                rand = random.nextInt(numberRange);
                rand += 48;
                c = new Character((char)rand);
                break;
            case SPECIAL_CHARACTOR://随机特殊字符
                rand = random.nextInt(spCharactorRange);
                c = new Character(allowedSpecialCharactors[rand]);
                break;
        }
        return c;
    }

    public static void main(String[] args)
    {
        System.out.println(new PasswordGeneratorUtil(8, 3).generateRandomPassword());
    }
}


enum CharactorType
{
    LOWERCASE,
    UPPERCASE,
    NUMBER,
    SPECIAL_CHARACTOR
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值