Java Byte Array to String byteToString(byte[] bByte)

Here you can find the source of byteToString(byte[] bByte)

Description

byte To String

License

Apache License

Declaration

private static String byteToString(byte[] bByte) 

Method Source Code

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

public class Main {
    private final static String[] strDigits = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c",
            "d", "e", "f" };

    private static String byteToString(byte[] bByte) {
        StringBuffer sBuffer = new StringBuffer();
        for (int i = 0; i < bByte.length; i++) {
            sBuffer.append(byteToArrayString(bByte[i]));
        }/*  w w  w  .jav a 2 s.co m*/
        return sBuffer.toString();
    }

    private static String byteToArrayString(byte bByte) {
        int iRet = bByte;
        if (iRet < 0) {
            iRet += 256;
        }
        int iD1 = iRet / 16;
        int iD2 = iRet % 16;
        return strDigits[iD1] + strDigits[iD2];
    }
}

Related

  1. byteToStr(byte[] byteArray)
  2. ByteToString(byte[] a, int nLen)
  3. byteToString(byte[] array, int byteLength)
  4. byteToString(byte[] b)
  5. byteToString(byte[] bByte)
  6. byteToString(byte[] byteArr)
  7. byteToString(byte[] bytearray)
  8. byteToString(byte[] bytes)
  9. byteToString(byte[] data)