Daftar biginteger ke daftar panjang
List<Long> longList = bigIntegerList.stream().map(BigInteger::longValue).collect(Collectors.toList());
Graceful Gecko
List<Long> longList = bigIntegerList.stream().map(BigInteger::longValue).collect(Collectors.toList());