I have no problems converting a Set of Strings to a string[] array, but I'm having problems doing so with converting a Set of Integer to an int[] array. How can I convert the Integers to its primitive?
I cannot seem to find any related questions. Any quick suggestions that can help?
Sometimes, autoboxing cannot be used, as in the case of arrays. I don't think an array of integers will automatically be converted to an array of ints.
toArray(T[]). Just loop over it yourself and let autoboxing do its job. – BalusC Aug 19 '11 at 15:09int? Any specific reason thatIntegeris not ok? – Nivas Aug 19 '11 at 15:13