Java Byte to Int byteToInt(byte myByte)

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

Description

Converts byte to integer value.

License

Creative Commons License

Parameter

Parameter Description
myByte byte to convert

Return

converted int

Declaration

public static int byteToInt(byte myByte) 

Method Source Code

//package com.java2s;
//License from project: Creative Commons License 

public class Main {
    /**//from  www .ja v a  2  s .co  m
     * Converts byte to integer value.
     * 
     * @param myByte byte to convert
     * @return converted int
     */
    public static int byteToInt(byte myByte) {
        return (int) myByte & 0xff;
    }
}

Related

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