Here you can find the source of toIntArray(final byte[] bytes)
public static int[] toIntArray(final byte[] bytes)
//package com.java2s; //License from project: Apache License public class Main { public static int[] toIntArray(final byte[] bytes) { int len = bytes.length; int[] arr = new int[len]; for (int i = 0; i < len; i++) arr[i] = (int) bytes[i]; return arr; }// w w w. j a v a2 s .c o m }