Here you can find the source of createBigInteger(String str)
public static BigInteger createBigInteger(String str)
//package com.java2s; import java.math.BigInteger; public class Main { public static BigInteger createBigInteger(String str) { if (str == null) { return null; }//www. jav a 2s .c o m return new BigInteger(str); } }