隨機數小工具類


package com.*.*.utils;

import java.util.Random;

import org.apache.commons.lang3.StringUtils;

public class RandomUtils {
    public static final String NUMBERS_AND_LETTERS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
    public static final String NUMBERS = "0123456789";
    public static final String LETTERS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
    public static final String CAPITAL_LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    public static final String LOWER_CASE_LETTERS = "abcdefghijklmnopqrstuvwxyz";
    public static final String CAPITAL_HEX_NUMBERS = "0123456789ABCDEF";
    public static final String LOWER_HEX_NUMBERS = "0123456789abcdef";
    public static final String UPPER_CASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    public static final String SPECIAL_CHARACTER = "~!@#$%^&*<>/";
    
    
    

    private RandomUtils() {
        throw new AssertionError();
    }

    /**
     * get a fixed-length random string, its a mixture of uppercase, lowercase
     * letters and numbers
     * 
     * @param length
     *            length
     * @return RandomUtils
     */
    public static String getRandomNumbersAndLetters(int length) {
        return getRandom(NUMBERS_AND_LETTERS, length);
    }

    /**
     * get a fixed-length random string, its a mixture of numbers
     * 
     * @param length
     *            length
     * @return RandomUtils
     */
    public static String getRandomNumbers(int length) {
        return getRandom(NUMBERS, length);
    }

    /**
     * get a fixed-length random string, its a mixture of uppercase and
     * lowercase letters
     * 
     * @param length
     *            length
     * @return RandomUtils
     */
    public static String getRandomLetters(int length) {
        return getRandom(LETTERS, length);
    }

    /**
     * get a fixed-length random string, its a mixture of uppercase letters
     * 
     * @param length
     *            length
     * @return CapitalLetters
     */
    public static String getRandomCapitalLetters(int length) {
        return getRandom(CAPITAL_LETTERS, length);
    }

    /**
     * get a fixed-length random string, its a mixture of lowercase letters
     * 
     * @param length
     *            length
     * @return get a fixed-length random string, its a mixture of lowercase
     *         letters
     */
    public static String getRandomLowerCaseLetters(int length) {
        return getRandom(LOWER_CASE_LETTERS, length);
    }

    /**
     * 獲取隨機小寫十六進制數
     * 
     * @param length
     * @return
     */
    public static String getRandomLowerHexNumbers(int length) {
        return getRandom(LOWER_HEX_NUMBERS, length);
    }

    /**
     * 獲取隨機大寫十六進制數
     * 
     * @param length
     * @return
     */
    public static String getRandomCapitalHexNumbers(int length) {
        return getRandom(CAPITAL_HEX_NUMBERS, length);
    }

    /**
     * get a fixed-length random string, its a mixture of chars in source
     * 
     * @param source
     *            source
     * @param length
     *            length
     * @return get a fixed-length random string, its a mixture of chars in
     *         source
     */
    public static String getRandom(String source, int length) {
        return StringUtils.isEmpty(source) ? null : getRandom(
                source.toCharArray(), length);
    }

    /**
     * get a fixed-length random string, its a mixture of chars in sourceChar
     * 
     * @param sourceChar
     *            sourceChar
     * @param length
     *            length
     * @return get a fixed-length random string, its a mixture of chars in
     *         sourceChar
     */
    public static String getRandom(char[] sourceChar, int length) {
        if (sourceChar == null || sourceChar.length == 0 || length < 0) {
            return null;
        }

        StringBuilder str = new StringBuilder(length);
        Random random = new Random();
        for (int i = 0; i < length; i++) {
            str.append(sourceChar[random.nextInt(sourceChar.length)]);
        }
        return str.toString();
    }

    /**
     * 
     * @param max
     *            接受的數值
     * @return 返回一個隨機的數值
     */
    public static int getRandom(int max) {

        return getRandom(0, max);
    }

    /**
     * 
     * @param min
     *            最小
     * @param max
     *            最大
     * @return 返回一個範圍的數值
     */
    public static int getRandom(int min, int max) {

        if (min > max) {
            return 0;
        }
        if (min == max) {
            return min;
        }
        return min + new Random().nextInt(max - min);
    }

    /**
     * Shuffling algorithm, Randomly permutes the specified array using a
     * default source of randomness
     * 
     * @param objArray
     *            數組
     * @return 從新的數組
     */
    public static boolean shuffle(Object[] objArray) {
        if (objArray == null) {
            return false;
        }

        return shuffle(objArray, getRandom(objArray.length));
    }

    /**
     * Shuffling algorithm, Randomly permutes the specified array
     * 
     * @param objArray
     *            數組
     * @param shuffleCount
     *            洗的個數
     * @return 是否成功
     */
    public static boolean shuffle(Object[] objArray, int shuffleCount) {
        int length;
        if (objArray == null || shuffleCount < 0
                || (length = objArray.length) < shuffleCount) {
            return false;
        }

        for (int i = 1; i <= shuffleCount; i++) {
            int random = getRandom(length - i);
            Object temp = objArray[length - i];
            objArray[length - i] = objArray[random];
            objArray[random] = temp;
        }
        return true;
    }

    /**
     * Shuffling algorithm, Randomly permutes the specified int array using a
     * default source of randomness
     * 
     * @param intArray
     *            數組
     * @return 洗牌之後
     */
    public static int[] shuffle(int[] intArray) {
        if (intArray == null) {
            return null;
        }

        return shuffle(intArray, getRandom(intArray.length));
    }

    /**
     * Shuffling algorithm, Randomly permutes the specified int array
     * 
     * @param intArray
     *            數組
     * @param shuffleCount
     *            範圍
     * @return 新的數組
     */
    public static int[] shuffle(int[] intArray, int shuffleCount) {
        int length;
        if (intArray == null || shuffleCount < 0
                || (length = intArray.length) < shuffleCount) {
            return null;
        }

        int[] out = new int[shuffleCount];
        for (int i = 1; i <= shuffleCount; i++) {
            int random = getRandom(length - i);
            out[i - 1] = intArray[random];
            int temp = intArray[length - i];
            intArray[length - i] = intArray[random];
            intArray[random] = temp;
        }
        return out;
    }
    
    public static String getRandPwd(){
        StringBuffer pwd=new StringBuffer();
        Random rand = new Random();
        //隨機取4個大寫字母
        for (int i = 0; i < 4; i++) 
        {
            pwd.append(UPPER_CASE.charAt(rand.nextInt(26)) + "");
        }
        //隨機取一個特殊字符
        for(int j=0;j<1;j++){
            pwd.append(SPECIAL_CHARACTER.charAt(rand.nextInt(12)));
        }
        //隨機取三個數字
        for(int k=0;k<3;k++){
            pwd.append(NUMBERS.charAt(rand.nextInt(10)));
        }
        return pwd.toString();
    }
    
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章