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 an array of Integer objects, this method is overloaded to accept other types of object’s 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 and array of Integer objects into an array of type int.
int[] ints = ArrayUtils.toPrimitive(integers);
System.out.println(ArrayUtils.toString(ints));
// Convert an array of Boolean objects into an 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.14.0</version>
</dependency>
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024