| | |
| | | public static final String NUMBERS = "0123456789"; |
| | | public static final String LOWER_CASE = "abcdefghijklmnopqrstuvwxyz"; |
| | | public static final String CAPITAL = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; |
| | | public static final String CAPITAL_NUM = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; |
| | | public static final String CAPITAL_NUM_LOWER = "0123456789abcdefghijklmnopqrstuvwxyz"; |
| | | public static final String ALL = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 生成指定长度的随机字符串 |
| | |
| | | } |
| | | |
| | | public static void main(String[] args) { |
| | | System.out.println(getRandomString(24, RandomStringUtil.ALL)); |
| | | System.out.println(getRandomString(6, RandomStringUtil.NUMBERS)); |
| | | } |
| | | } |