在 Java 中从字节数组创建 BigInteger


BigInteger 类提供了用于算术模运算、最大公约数计算、质数测试、质数生成、位操作和其他一些杂项运算的操作。

假设以下内容是我们的字节数组 -

byte[] arr = new byte[] { 0x1, 0x00, 0x00 };

我们现在将它们转换为 BigInteger -

BigInteger bInteger = new BigInteger(arr);

以下是一个示例,其中在 Java 中从字节数组创建 BigInteger。

示例

 在线演示

import java.math.BigInteger;
public class Demo {
   public static void main(String[] argv) throws Exception {
      byte[] arr = new byte[] { 0x1, 0x00, 0x00 };
      BigInteger bInteger = new BigInteger(arr);
      System.out.println(bInteger);
   }
}

输出

65536

更新于: 06-29-2020

2K+ 浏览

开启你的 职业生涯

完成课程获得认证

开始
广告