You can copy values to integer and switch negative values into its positive 'unsigned' value:
byte[] bytes = [-1, 10, -128];
int[] ints = new int[bytes.length];
for (int idx = 0 ; idx < bytes.length ; idx++) {
byte b = bytes[idx];
ints[idx] = b < 0 ? 256 + b : b;
}