Java Byte to String byteToString(byte b)

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

Description

byte To String

License

Open Source License

Declaration

public static String byteToString(byte b) 

Method Source Code

//package com.java2s;

public class Main {
    public static String byteToString(byte b) {
        String result = String.valueOf(Integer.toHexString(b & 0xFF));
        if (result.length() == 1)
            result = "0" + result;
        return result.toUpperCase();
    }/*w  w  w .  j  ava 2 s  .  co m*/
}

Related

  1. byteToArrayString(byte bByte)
  2. byteToStr(byte input)
  3. byteToString(byte b)
  4. byteToString(byte b)
  5. ByteToString(byte b)
  6. byteToString(byte b_)
  7. byteToString(int b)
  8. byteToString(int b)