In the code example below we demonstrate the ArrayUtils.toPrimitive()
method to convert an array of Integer object to an array of its primitive type. Besides, converting array of Integer objects this method is overloaded to accept other types of object array.
package org.kodejava.commons.lang;
import org.apache.commons.lang3.ArrayUtils;
public class ArrayObjectToPrimitiveDemo {
public static void main(String[] args) {
// An array of Integer objects.
Integer[] integers = {1, 2, 3, 5, 8, 13, 21, 34, 55};
Boolean[] booleans = {Boolean.TRUE, Boolean.TRUE, Boolean.FALSE, Boolean.FALSE};
// Convert array of Integer objects into array of type int.
int[] ints = ArrayUtils.toPrimitive(integers);
System.out.println(ArrayUtils.toString(ints));
// Convert array of Boolean objects into array of type boolean.
boolean[] bools = ArrayUtils.toPrimitive(booleans);
System.out.println(ArrayUtils.toString(bools));
}
}
The output of our code snippet:
{1,2,3,5,8,13,21,34,55}
{true,true,false,false}
Maven Dependencies
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
Latest posts by Wayan (see all)
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023