Java – Random Long, Float, Integer and Double

1. Generate an Unbounded Long

Let’s start with generating a Long:

@Test
public void givenUsingPlainJava_whenGeneratingRandomLongUnbounded_thenCorrect() {
    long generatedLong = new Random().nextLong();
}

2. Generate a Long Within a Range

2.1. Random Long With Plain Java

Next – let’s look at creating a random bounded Long – that is, a Long value within a given range or interval:

@Test
public void givenUsingPlainJava_whenGeneratingRandomLongBounded_thenCorrect() {
    long leftLimit = 1L;
    long rightLimit = 10L;
    long generatedLong = leftLimit + (long) (Math.random() * (rightLimit - leftLimit));
}

2.2. Random Long With Apache Commons Math

Let’s take a look at generating the random Long with a cleaner API and Commons Math:

@Test
public void givenUsingApacheCommons_whenGeneratingRandomLongBounded_thenCorrect() {
    long leftLimit = 10L;
    long rightLimit = 100L;
    long generatedLong = new RandomDataGenerator().nextLong(leftLimit, rightLimit);
}

3. Generate an Unbounded Integer

Let’s move right on to generating a random Integer with no bounds:

@Test
public void givenUsingPlainJava_whenGeneratingRandomIntegerUnbounded_thenCorrect() {
    int generatedInteger = new Random().nextInt();
}

As you can see, it’s pretty close to generating a long.

4. Generate an Integer Within a Range

4.1. Random Integer With Plain Java

Next – a random integer within a given range:

@Test
public void givenUsingPlainJava_whenGeneratingRandomIntegerBounded_thenCorrect() {
    int leftLimit = 1;
    int rightLimit = 10;
    int generatedInteger = leftLimit + (int) (new Random().nextFloat() * (rightLimit - leftLimit));
}

4.2. Random Integer With Commons Math

And the same with Common Math:

@Test
public void givenUsingApache_whenGeneratingRandomIntegerBounded_thenCorrect() {
    int leftLimit = 1;
    int rightLimit = 10;
    int generatedInteger = new RandomDataGenerator().nextInt(leftLimit, rightLimit);
}

5. Generate an Unbounded Float

Now, let’s go over generating random floats – first unbounded:

@Test
public void givenUsingPlainJava_whenGeneratingRandomFloatUnbouned_thenCorrect() {
    float generatedFloat = new Random().nextFloat();
}

6. Generate a Float Within a Range

6.1. Random Float With Plain Java

And a bounded random float:

@Test
public void givenUsingPlainJava_whenGeneratingRandomFloatBouned_thenCorrect() {
    float leftLimit = 1F;
    float rightLimit = 10F;
    float generatedFloat = leftLimit + new Random().nextFloat() * (rightLimit - leftLimit);
}

6.2. Random Float With Commons Math

Now – a bounded random float with Commons Math:

@Test
public void givenUsingApache_whenGeneratingRandomFloatBounded_thenCorrect() {
    float leftLimit = 1F;
    float rightLimit = 10F;
    float randomFloat = new RandomDataGenerator().getRandomGenerator().nextFloat();
    float generatedFloat = leftLimit + randomFloat * (rightLimit - leftLimit);
}

7. Generate an Unbounded Double

7.1. Random Unbounded Double With Plain Java

Finally – we’re going to generate random double values – first, with the Java Math API:

@Test
public void givenUsingPlainJava_whenGeneratingRandomDoubleUnbounded_thenCorrect() {
    double generatedDouble = Math.random();
}

7.2. Random Unbounded Double With Commons Math

As well as a random double value with the Apache Commons Math library:

@Test
public void givenUsingApache_whenGeneratingRandomDoubleUnbounded_thenCorrect() {
    double generatedDouble = new RandomDataGenerator().getRandomGenerator().nextDouble();
}

8. Generate a Double Within a Range

8.1. Random Bounded Double With Plain Java

In this example, let’s take a look at a random double generated within an interval – with Java:

@Test
public void givenUsingPlainJava_whenGeneratingRandomDoubleBounded_thenCorrect() {
    double leftLimit = 1D;
    double rightLimit = 10D;
    double generatedDouble = leftLimit + new Random().nextDouble() * (rightLimit - leftLimit);
}

8.2. Random Bounded Double With Commons Math

And lastly – a random double within an interval, using the Apache Commons Math library:

@Test
public void givenUsingApache_whenGeneratingRandomDoubleBounded_thenCorrect() {
    double leftLimit = 1D;
    double rightLimit = 100D;
    double generatedDouble = new RandomDataGenerator().nextUniform(leftLimit, rightLimit);
}

And there you have it – quick and to the point examples of how to generate both unbounded and bounded values for the most common numerical primitives in Java.

9. Conclusion

This tutorial illustrated how we could generate random numbers either bound or unbound, using different techniques and libraries.

As always, the implementation of all of these examples and snippets can be found in the GitHub project. This is a Maven-based project so it should be easy to import and run.

Related posts:

Java Program to Implement wheel Sieve to Generate Prime Numbers Between Given Range
Java Program to Compute the Area of a Triangle Using Determinants
“Stream has already been operated upon or closed” Exception in Java
Spring Boot with Multiple SQL Import Files
The Difference Between Collection.stream().forEach() and Collection.forEach()
Stack Memory and Heap Space in Java
Java Program to Implement Binomial Heap
Hướng dẫn Java Design Pattern – Composite
Java Program to Implement LinkedList API
Retrieve User Information in Spring Security
Difference Between Wait and Sleep in Java
The “final” Keyword in Java
Primitive Type Streams in Java 8
Apache Commons Collections BidiMap
Java Program to Implement Queue using Linked List
Java Program to Represent Linear Equations in Matrix Form
Java Program to Implement Hash Tables Chaining with Doubly Linked Lists
Refactoring Design Pattern với tính năng mới trong Java 8
Java Program to Create a Minimal Set of All Edges Whose Addition will Convert it to a Strongly Conne...
Java Program to Implement Queue
Convert a Map to an Array, List or Set in Java
Java Program to Solve Travelling Salesman Problem for Unweighted Graph
Check If a File or Directory Exists in Java
Java Program to Solve a Matching Problem for a Given Specific Case
Java Program to Implement Nth Root Algorithm
Spring Boot - Securing Web Applications
Java Program to Implement Depth-limited Search
Introduction to Spring Security Expressions
Split a String in Java
New Features in Java 11
Redirect to Different Pages after Login with Spring Security
Java Collections Interview Questions