原创

```java

温馨提示:
本文最后更新于 2024年07月22日,已超过 255 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我

```java import java.util.Random;

/* * This class provides a set of utilities for generating random strings. * * @author Bard * @version 1.0 * @since 2023-10-26 / public class RandomStringGenerator {

/**
 * The default length of the generated random string.
 */
private static final int DEFAULT_LENGTH = 10;

/**
 * The set of characters to use for generating the random string.
 */
private static final String CHARACTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

/**
 * Generates a random string of the specified length.
 *
 * @param length the length of the string to generate
 * @return a random string of the specified length
 */
public static String generate(int length) {
    Random random = new Random();
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < length; i++) {
        int index = random.nextInt(CHARACTERS.length());
        sb.append(CHARACTERS.charAt(index));
    }
    return sb.toString();
}

/**
 * Generates a random string of the default length.
 *
 * @return a random string of the default length
 */
public static String generate() {
    return generate(DEFAULT_LENGTH);
}

/**
 * Main method for testing purposes.
 *
 * @param args command line arguments (not used)
 */
public static void main(String[] args) {
    System.out.println(generate());
    System.out.println(generate(15));
}

} ```

随机字符串生成器

此类提供了一组用于生成随机字符串的实用程序。

作者: Bard

版本: 1.0

日期: 2023-10-26

方法

  • generate(int length)

    • 生成指定长度的随机字符串。
    • 参数:
      • length: 要生成的字符串的长度。
    • 返回值: 指定长度的随机字符串。
  • generate()

    • 生成默认长度的随机字符串。
    • 返回值: 默认长度的随机字符串。

变量

  • DEFAULT_LENGTH: 生成的随机字符串的默认长度。
  • CHARACTERS: 用于生成随机字符串的字符集。

示例

java System.out.println(RandomStringGenerator.generate()); // 输出长度为10的随机字符串 System.out.println(RandomStringGenerator.generate(15)); // 输出长度为15的随机字符串

正文到此结束