Thursday, January 29, 2026
HomeLanguagesJavaConvert an Iterator to a List in Java

Convert an Iterator to a List in Java

Given an Iterator, the task is to convert it into List in Java.

Examples:

Input: Iterator = {1, 2, 3, 4, 5}
Output: {1, 2, 3, 4, 5}

Input: Iterator = {'G', 'e', 'e', 'k', 's'}
Output: {'G', 'e', 'e', 'k', 's'}

Below are the various ways to do so:

  • Naive Approach:
    1. Get the Iterator.
    2. Create an empty list.
    3. Add each element of the iterator to the list using forEachRemaining() method.
    4. Return the list.

    Below is the implementation of the above approach:




    // Java program to get a List
    // from a given Iterator
      
    import java.util.*;
      
    class GFG {
      
        // Function to get the List
        public static <T> List<T>
        getListFromIterator(Iterator<T> iterator)
        {
      
            // Create an empty list
            List<T> list = new ArrayList<>();
      
            // Add each element of iterator to the List
            iterator.forEachRemaining(list::add);
      
            // Return the List
            return list;
        }
      
        // Driver code
        public static void main(String[] args)
        {
      
            // Get the Iterator
            Iterator<Integer>
                iterator = Arrays.asList(1, 2, 3, 4, 5)
                               .iterator();
      
            // Get the List from the Iterator
            List<Integer>
                list = getListFromIterator(iterator);
      
            // Print the list
            System.out.println(list);
        }
    }

    
    
    Output:

    [1, 2, 3, 4, 5]
    
  • Using Iterable as intermediate:
    1. Get the Iterator.
    2. Convert the iterator to iterable using lambda expression.
    3. Convert the iterable to list using Stream.
    4. Return the list.

    Below is the implementation of the above approach:




    // Java program to get a List
    // from a given Iterator
      
    import java.util.*;
    import java.util.stream.Collectors;
    import java.util.stream.StreamSupport;
      
    class GFG {
      
        // Function to get the List
        public static <T> List<T>
        getListFromIterator(Iterator<T> iterator)
        {
      
            // Convert iterator to iterable
            Iterable<T> iterable = () -> iterator;
      
            // Create a List from the Iterable
            List<T> list = StreamSupport
                               .stream(iterable.spliterator(), false)
                               .collect(Collectors.toList());
      
            // Return the List
            return list;
        }
      
        // Driver code
        public static void main(String[] args)
        {
      
            // Get the Iterator
            Iterator<Integer>
                iterator = Arrays.asList(1, 2, 3, 4, 5)
                               .iterator();
      
            // Get the List from the Iterator
            List<Integer>
                list = getListFromIterator(iterator);
      
            // Print the list
            System.out.println(list);
        }
    }

    
    
    Output:

    [1, 2, 3, 4, 5]
    
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6916 POSTS0 COMMENTS