Online Java Compiler By
JavaTpoint.com
import java.math.BigInteger; public class BigIntegerToByteArrayExample1 { public static void main(String[] args) { // create a BigInteger object BigInteger big1; // create a byte array object byte[] byteArray; // assign value to big1 big1 = new BigInteger("20"); // assign byte array representation of big1 to byteArray byteArray = big1.toByteArray(); String str = "Byte array representation of "+big1+" is: "; System.out.print(str); // print byte array byteArray using for loop for(int i=0;i
Output