您可以使用a IntStream来创建288个项目的范围,然后将其平面映射到三个字符串:
IntStream
List strings = IntStream.range(0, 288) .boxed() .flatMap(i -> Stream.of("A", "B", "C")) .collect(Collectors.toList());