Java Byte to Int byteToNum(byte bByte)

Here you can find the source of byteToNum(byte bByte)

Description

byte To Num

License

Apache License

Declaration

private static String byteToNum(byte bByte) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static String byteToNum(byte bByte) {
        int iRet = bByte;
        System.out.println("iRet1=" + iRet);
        if (iRet < 0) {
            iRet += 256;/*  w  w w  . j ava2s  .  co  m*/
        }
        return String.valueOf(iRet);
    }
}

Related

  1. byteToInt(byte myByte)
  2. byteToInt(byte value)
  3. byteToInt(int b)
  4. byteToInteger(final byte b)
  5. byteToInteger(final byte value)
  6. byteToNumString(byte b)
  7. byteToOffset(int value)
  8. byteToPositiveInt(byte inByte)
  9. ubyte2int(byte in)