tags:

views:

89

answers:

1

Is there a implemented Java method in jdk to do this?

public static Byte[] box(byte[] byteArray) {
Byte[] box = new Byte[byteArray.length];
for (int i = 0; i < box.length; i++) {
    box[i] = byteArray[i];
}
return box;
}
+7  A: 

No, there is no such method in the JDK.

As it's often the case, however, Apache Commons Lang provides such a method.

Joachim Sauer