vote up 1 vote down star

How do I convert int[] into List<Integer> in Java?

Of course, I'm interested in any other answer than doing it in a loop, item by item. But if there's no other answer, I'll pick that one as the best to show the fact that this functionality is not part of Java.

flag

77% accept rate

7 Answers

vote up 8 vote down check

There is no shortcut for converting from int[] to List as Arrays.asList does not deal with boxing and will just create a List which is not what you want. You have to make a utility method.

    int[] ints = {1, 2, 3};
    List<Integer> intList = new ArrayList<Integer>();
    for (int index = 0; index < ints.length; index++)
    {
        intList.add(ints[index]);
    }
link|flag
1  
It is best to initialise the list with the size of the array – David Rabinowitz Jul 2 at 11:54
@David Rabinowitz - Not sure what to say to that :) – willcodejavaforfood Jul 2 at 11:55
If you insist to use the ArrayList implementation, why not just use the overloaded constructor to do: new ArrayList(myArray) ? – Jørn Schou-Rode Jul 2 at 11:56
1  
I dont think there is such a constructor – willcodejavaforfood Jul 2 at 12:01
5  
for (int i : ints) intList.add(i); – Stephen Denne Jul 2 at 12:19
show 1 more comment
vote up -1 vote down

Use Arrays.asList()

To deal with autoboxing issues, you obviously need to convert the int[] to Integer[]; this can for instance be done with org.apache.commons.lang.ArrayUtils.toObject()

link|flag
2  
There is no such thing as a List<int>. – Michael Borgwardt Jul 2 at 11:56
1  
You can't have a List<int>! – pjp Jul 2 at 11:56
3  
This will not work - It will give you a single element List; the element's class being [I (i.e. int[]). Arrays.asList does not deal with auto-boxing and you're better off writing a utility method as described by willcodejavaforfood. – Adamski Jul 2 at 11:58
4  
How come a wrong answer gets so many upvotes ? – Leonel Jul 2 at 12:05
1  
What's ArrayUtils? – Adamski Jul 2 at 12:11
show 8 more comments
vote up 6 vote down

It's also worth checking out this bug report, which was closed with reason "Not a defect" and the following text:

"Autoboxing of entire arrays is not specified behavior, for good reason. It can be prohibitively expensive for large arrays."

link|flag
vote up 1 vote down

Arrays.asList will not work as some of the other answers expect.

This code will not create a list of 10 integers. It will print 1, not 10:

int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
List lst = Arrays.asList(arr);
System.out.println(lst.size());

This will create a list of integers:

List<Integer> lst = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);

If you already have the array of ints, there is not quick way to convert, you're better off with the loop.

On the other hand, if your array has Objects, not primitives in it, Arrays.asList will work:

String str[] = { "Homer", "Marge", "Bart", "Lisa", "Maggie" };
List<String> lst = Arrays.asList(str);
link|flag
vote up 3 vote down

give a try to this class:

class PrimitiveWrapper<T> extends AbstractList<T> {

    private final T[] data;

    private PrimitiveWrapper(T[] data) {
        this.data = data; // you can clone this array for preventing aliasing
    }

    public static <T> List<T> ofIntegers(int... data) {
        return new PrimitiveWrapper(toBoxedArray(Integer.class, data));
    }

    public static <T> List<T> ofCharacters(char... data) {
        return new PrimitiveWrapper(toBoxedArray(Character.class, data));
    }

    public static <T> List<T> ofDoubles(double... data) {
        return new PrimitiveWrapper(toBoxedArray(Double.class, data));
    }  

    // ditto for byte, float, boolean, long

    private static <T> T[] toBoxedArray(Class<T> boxClass, Object components) {
        final int length = Array.getLength(components);
        Object res = Array.newInstance(boxClass, length);

        for (int i = 0; i < length; i++) {
            Array.set(res, i, Array.get(components, i));
        }

        return (T[]) res;
    }

    @Override
    public T get(int index) {
        return data[index];
    }

    @Override
    public int size() {
        return data.length;
    }
}

testcase:

List<Integer> ints = PrimitiveWrapper.ofIntegers(10, 20);
List<Double> doubles = PrimitiveWrapper.ofDoubles(10, 20);
// etc
link|flag
vote up 8 vote down

I'll add another answer with a different method; no loop but an anonymous class that will utilize the autoboxing features:

    public List<Integer> asList(final int[] is)
    {
            return new AbstractList<Integer>() {
                    public Integer get(int i) { return is[i]; }
                    public int size() { return is.length; }
            };
    }
link|flag
+1 this is shorter than mine but mine works for all primitives types – dfa Jul 2 at 12:31
While quicker and using less memory than creating an ArrayList, the trade off is List.add() and List.remove() don't work. – Stephen Denne Jul 2 at 13:03
1  
I quite like this solution for large arrays with sparse access patterns but for frequently accessed elements it would result in many unnecessary instantiations of Integer (e.g. if you accessed the same element 100 times). Also you would need to define Iterator and wrap the return value in Collections.unmodifiableList. – Adamski Jul 2 at 13:44
vote up 0 vote down

Integer[] arr1 = {1,2,3}; List list = new ArrayList(); list = Arrays.asList(arr1);

Lists can be formed of only Objects and not primitives.

if you have an int array try converting it to Integer array and further to a list

link|flag
no need to instantiate a new ArrayList and discard it here – newacct Jul 3 at 22:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.