Java Byte to String byteToStr(byte input)

Here you can find the source of byteToStr(byte input)

Description

byte To Str

License

Apache License

Declaration

private static String byteToStr(byte input) 

Method Source Code

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

public class Main {
    private static String byteToStr(byte input) {
        String res = Integer.toHexString(input & 0xff);
        if (res.length() < 2) {
            res = "0" + res;
        }/*  w w w  .j av  a2s  .  com*/
        return res;
    }
}

Related

  1. byteToArrayString(byte bByte)
  2. byteToString(byte b)
  3. byteToString(byte b)
  4. byteToString(byte b)
  5. ByteToString(byte b)