繁体   English   中英

在Java中,如何创建n个具有某些属性的字符串

[英]in Java, how to create n number of Strings with certain properties

我想做的是产生n个字符串,每个字符串应随机包含2个字符和4个数字,例如:2w3e45 34rt56 qw5498 0126fd w5487t

依此类推,我有以下内容,它正在起作用,可以应用任何增强功能吗? 另外,我们可以将它们作为唯一的字符串吗?

import java.util.Random;

public class RandomNumAndChar {

public static void main(String[] args) {

    for (int j = 0; j < 10; j++) {
        Random r = new Random();
        Integer[] rn = new Integer[4];
        String numbers = new String();
        for (int i = 0; i < rn.length; i++) {
            rn[i] = r.nextInt(10);
            numbers = numbers + rn[i].toString();
        }
        char c = (char) (r.nextInt(26) + 'a');
        char c2 = (char) (r.nextInt(26) + 'a');
        String chars = "" + c + c2;
        String fin = numbers.concat(chars);
        System.out.println(RandomNumAndChar.shuffle(fin));


    }


}

public static String shuffle(String s) {
    char[] characters = s.toCharArray();
    for (int i = 0; i < characters.length; i++) {
        int randomIndex = (int)(Math.random() * characters.length);
        char temp = characters[i];
        characters[i] = characters[randomIndex];
        characters[randomIndex] = temp;
    }
    return new String(characters);
}

}

如评论中所述,这更适合CodeReview Stack Exchange 但是,以下是一些我将用来执行任务的准则:

  • 使用6个Character数组存储代码。 当心我说的是Character ,不是char 这是因为Java在处理包装类时更加灵活。
  • 使用Collections#shuffle()来随机排列数组。 这是Character出现的地方,因为我们需要使用Arrays#asList()List转换数组。
  • 使用一种方法来生成整个代码,不仅用于改组。

使用这个简单的准则,您将得到类似:

class Test {

    static Random r = new Random();

    public static void main(String[] a) {

        for (int i = 0; i < 10; i++) {
            System.out.println(getNewCode());
        }
    }

    private static String getNewCode() {
        Character[] array = new Character[6];

        int i = 0;
        while(i < 4) array[i++] = (char) ('0' + r.nextInt(10));

        array[4] = (char) ('a' + r.nextInt(26));
        array[5] = (char) ('a' + r.nextInt(26));

        List<Character> l = Arrays.asList(array);

        Collections.shuffle(l);

        StringBuilder sb = new StringBuilder();

        for (char s : l)
            sb.append(s);

        return sb.toString();
    }
}

样本输出:

e1v456
8s632b
t7810w
n9801y
76q14c
p2a881
27m7k1
1081st
m19u36
t03h77

更方便的是,您可以直接使用List而不是数组:

class Test {

    static Random r = new Random();

    public static void main(String[] a) {

        for (int i = 0; i < 10; i++) {
            System.out.println(getNewCode());
        }
    }

    private static String getNewCode() {
        List<Character> l = new ArrayList<Character>();

        int i = 0;
        for(int i = 0; i<4; i++)
            l.add((char) ('0' + r.nextInt(10)));

        l.add((char) ('a' + r.nextInt(26)));
        l.add((char) ('a' + r.nextInt(26)));

        Collections.shuffle(l);

        StringBuilder sb = new StringBuilder();

        for (char s : l)
            sb.append(s);

        return sb.toString();
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM