Java Byte to Int byteToInt(byte b)

Here you can find the source of byteToInt(byte b)

Description

Take 1 byte to int

License

Open Source License

Parameter

Parameter Description
bytes a parameter

Exception

Parameter Description
InvalidAlgorithmParameterException an exception

Declaration

public static int byteToInt(byte b) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**/*from   w  w  w  .j  a  v a  2s .  c o  m*/
     * Take 1 byte to int
     * 
     * @param bytes
     * @return
     * @throws InvalidAlgorithmParameterException
     */
    public static int byteToInt(byte b) {
        return (b & 0xFF);
    }
}

Related

  1. Byte2Int(byte i)
  2. byte2int(final byte b)
  3. byte2integer(byte b)
  4. byte2integer(byte b)
  5. byteToInt(byte b)
  6. byteToInt(byte b)
  7. byteToInt(byte b0, byte b1, byte b2, byte b3)
  8. byteToInt(byte b_)
  9. byteToInt(byte Byte)