Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Generate a random BigInteger value in Java

import java.math.BigInteger;
import java.util.Random;
public class Demo {
	public static void main(String[] args) {
		BigInteger maxLimit = new BigInteger("5000000000000");
		BigInteger minLimit = new BigInteger("25000000000");
		BigInteger bigInteger = maxLimit.subtract(minLimit);
		Random randNum = new Random();
		int len = maxLimit.bitLength();
		BigInteger res =  new BigInteger(len, randNum);
		if (res.compareTo(minLimit) < 0)
			res = res.add(minLimit);
		if (res.compareTo(bigInteger) >= 0)
			res = res.mod(bigInteger).add(minLimit);
			System.out.println("The random BigInteger = "+res);
	}
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.