Java Byte to Int byteToInt(int b)

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

Description

Byte to Int converter

License

Open Source License

Parameter

Parameter Description
b Input byte value

Return

Int value

Declaration

public static int byteToInt(int b) 

Method Source Code

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

public class Main {
    /**//ww w.ja  v a  2s . c o m
     * Byte to Int converter
     * 
     * @param b Input byte value
     * @return Int value
     */
    public static int byteToInt(int b) {
        int i = b;
        if (i < 0) {
            i = i + 256;
        }
        return i;
    }
}

Related

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