Here you can find the source of BytesTobytes(Byte[] bytes)
public static byte[] BytesTobytes(Byte[] bytes)
//package com.java2s; //License from project: Apache License public class Main { public static byte[] BytesTobytes(Byte[] bytes) { byte[] result = new byte[bytes.length]; for (int i = 0; i < bytes.length; i++) { result[i] = bytes[i];/* w w w. ja va 2s .c o m*/ } return result; } public static Byte[] bytesToBytes(byte[] bytes) { Byte[] result = new Byte[bytes.length]; for (int i = 0; i < bytes.length; i++) { result[i] = bytes[i]; } return result; } }