Here you can find the source of toPrimitive(Byte[] bytes)
public static byte[] toPrimitive(Byte[] bytes)
//package com.java2s; //License from project: Open Source License public class Main { public static byte[] toPrimitive(Byte[] bytes) { byte[] bytesAsPrimitives = new byte[bytes.length]; for (int i = 0; i < bytes.length; i++) { bytesAsPrimitives[i] = bytes[i]; }//from w w w .j ava 2 s . c om return bytesAsPrimitives; } }