Generate random integers within a specific range in Java

PHOTO EMBED

Saved by [deleted user] #java

import java.util.concurrent.ThreadLocalRandom;

// nextInt is normally exclusive of the top value,
// so add 1 to make it inclusive
int randomNum = ThreadLocalRandom.current().nextInt(min, max + 1);
content_copyCOPY

For use in Java 1.7 or later

https://stackoverflow.com/questions/363681/how-do-i-generate-random-integers-within-a-specific-range-in-java