BigInteger bi = new BigInteger("123");

 
        int i = bi.intValue();
        long l = bi.longValue();
         
        System.out.println(i);
        System.out.println(l);

相关文章: