Java Byte to Int byteToNumString(byte b)

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

Description

byte To Num String

License

Open Source License

Declaration

private static String byteToNumString(byte b) 

Method Source Code

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

public class Main {
    private static String byteToNumString(byte b) {

        int tempB = b;
        if (tempB < 0) {
            tempB = 256 + tempB;/*from w w w.j a v a  2s.  co  m*/
        }

        return String.valueOf(tempB);
    }
}

Related

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