Liste de BigInteger à la liste longue
List<Long> longList = bigIntegerList.stream().map(BigInteger::longValue).collect(Collectors.toList());
Graceful Gecko
List<Long> longList = bigIntegerList.stream().map(BigInteger::longValue).collect(Collectors.toList());