Java Byte to Int byteToInt(byte Byte)

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

Description

byte To Int

License

Open Source License

Declaration

public static int byteToInt(byte Byte) 

Method Source Code

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

public class Main {
    public static int byteToInt(byte Byte) {
        int byte_H = (Byte >> 4) & 0x0f;
        int byte_L = Byte & 0x0f;
        return byte_H * 16 + byte_L;
    }/* w  w  w .  j a  v  a2s.  c om*/
}

Related

  1. byteToInt(byte b)
  2. byteToInt(byte b)
  3. byteToInt(byte b)
  4. byteToInt(byte b0, byte b1, byte b2, byte b3)
  5. byteToInt(byte b_)
  6. byteToInt(byte myByte)
  7. byteToInt(byte value)
  8. byteToInt(int b)
  9. byteToInteger(final byte b)