Mega Code Archive

 
Categories / Java / Collections Data Structure
 

Convert array of primitives into array of objects

import org.apache.commons.lang.ArrayUtils; public class Main {   public static void main(String[] args) {     int numbers[] = { 1, 2, 3, 4, 5 };     boolean bools[] = { true, false, false, true };     float decimals[] = { 10.1f, 3.14f, 2.17f };     Integer numbersObj[] = ArrayUtils.toObject(numbers);     Boolean boolsObj[] = ArrayUtils.toObject(bools);     Float decimalsObj[] = ArrayUtils.toObject(decimals);   } }