Lista de biginteger a la lista de largos

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