使用该toByteArray()
方法返回包含此BigInteger的二进制补码表示形式的字节数组。字节数组将按大端字节序排列:最高有效字节在第零个元素中。
下面是一个以二进制补码形式检索字节数组中当前位的示例。
import java.math.*; public class Demo { public static void main(String[] args) { //BigInteger对象 BigInteger bi1, bi2; byte b1[] = { 0x1, 0x00, 0x00 }; bi1 = new BigInteger(b1); b1 = bi1.toByteArray(); String strResult = "Byte array representation of " + bi1 + " = "; System.out.println(strResult); for (int i = 0; i < b1.length; i++) { System.out.format("0x%02X\n", b1[i]); } } }
输出结果
Byte array representation of 65536 = 0x01 0x00 0x00