[Solved] Generate a alphanumeric random and unique string with size of 8 in java(uppercase letter required)


Check out: RandomStringUtils and pick the most appropriate method! I would suggest:

RandomStringUtils.randomAlphanumeric(8)

1

solved Generate a alphanumeric random and unique string with size of 8 in java(uppercase letter required)