How to generate a random alpha-numeric string

前端 未结 30 2938
忘掉有多难
忘掉有多难 2020-11-21 05:38

I\'ve been looking for a simple Java algorithm to generate a pseudo-random alpha-numeric string. In my situation it would be used as a unique session/key identifie

30条回答
  •  后悔当初
    2020-11-21 06:15

    public static String generateSessionKey(int length){
        String alphabet =
            new String("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"); // 9
    
        int n = alphabet.length(); // 10
    
        String result = new String();
        Random r = new Random(); // 11
    
        for (int i=0; i

提交回复
热议问题