Java tutorial
//package com.java2s; //License from project: BSD License import java.util.*; public class Main { public static int[] toIntArray(Collection<Integer> is) { int[] out = new int[is.size()]; int index = 0; for (Integer i : is) out[index++] = i; return out; } }