Android Byte Array to Int Convert getIntFromByteArray(final byte[] bytes)

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

Description

Converts a byte array to an int.

Parameter

Parameter Description
bytes the bytes

Return

the int from byte array

Declaration

public static int getIntFromByteArray(final byte[] bytes) 

Method Source Code

//package com.java2s;
import java.nio.ByteBuffer;

public class Main {
    /**//  w w w  .  j  a va 2s  .  c o  m
     * Converts a byte array to an int.
     *
     * @param bytes the bytes
     * @return the int from byte array
     */
    public static int getIntFromByteArray(final byte[] bytes) {
        return ByteBuffer.wrap(bytes).getInt();
    }
}

Related

  1. getInt3(byte[] b, int offset)
  2. getIntFrom2ByteArray(final byte[] input)
  3. getIntFromByte(final byte bite)
  4. getIntFromByte(final byte bite)
  5. getIntFromByteArray(final byte[] byteArr)
  6. getIntLE2(byte[] b, int offset)
  7. getInts(int[] toInts, byte[] fromBytes)
  8. getInts(int[] toInts, byte[] fromBytes, int fromOffset)
  9. getUIntByByte(byte data)