去除随机生成字符串中的重复字符,并将新的字符串输出.

要用到IndexOf和random
2024-11-25 19:41:16
推荐回答(1个)
回答1:

import java.util.Random;

public class Test {
    public static void main(String[] args) {
        // 利用Random生成16位的随机字符串
        String[] chars = {"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"};
        Random random = new Random();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < 16; i++) {
            sb.append(chars[random.nextInt(26)]);
        }
        String str = sb.toString();

        System.out.println("随机生成的字符串:" + str);

        // 利用indexOf去除重复字符
        for (int i = 0; i < str.length(); i++) {
            int index = str.indexOf(str.charAt(i), i + 1);
            if (index > -1) {
                str = str.substring(0, index) + str.substring(index + 1);
                i--;
            }
        }
        System.out.println(str);
    }
}