Java Integer Create toIntArray(final byte[] bytes)

Here you can find the source of toIntArray(final byte[] bytes)

Description

to Int Array

License

Apache License

Declaration

public static int[] toIntArray(final byte[] bytes) 

Method Source Code

//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
}

Related

  1. toIntArray(byte[] data, int offset)
  2. toIntArray(byte[] input)
  3. toIntArray(double[] a)
  4. toIntArray(double[] array)
  5. toIntArray(final byte[] array)
  6. toIntArray(final double[] doubleArray)
  7. toIntArray(final int ip)
  8. toIntArray(final Object[] array)
  9. toIntArray(final String[] arrayOfIntStrings)