Source Code : Utility method to convert byte array to hex-encoded string.
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Utility method to convert byte array to hex-encoded string.
/*
* Copyright WizTools.org
* Licensed under the Apache License, Version 2.0:
* http://www.apache.org/licenses/LICENSE-2.0
*/
//package org.wiztools.commons;
/**
* Utility method to convert byte array to hex-encoded string.
* @author subwiz
*/
public final class HexEncodeUtil {
final static String pseudo[] = {"0", "1", "2",
"3", "4", "5", "6", "7", "8",
"9", "a", "b", "c", "d", "e",
"f"};
private HexEncodeUtil(){}
/**
* This logic is based on the tip published by Jeff Boyle
* here: http://www.devx.com/tips/Tip/13540
* @param input byte[] input to convert
* @return Hex representation of the input
*/
public static String bytesToHex(byte input[]) {
if (input == null || input.length <= 0) {
return null;
}
final StringBuilder out = new StringBuilder(input.length * 2);
for(int i=0; i<input.length; i++) {
byte ch = (byte) (input[i] & 0xF0); // Strip off high nibble
ch = (byte) (ch >>> 4);
// shift the bits down
ch = (byte) (ch & 0x0F);
// must do this is high order bit is on!
out.append(pseudo[(int) ch]); // convert the nibble to a String Character
ch = (byte) (input[i] & 0x0F); // Strip off low nibble
out.append(pseudo[(int) ch]); // convert the nibble to a String Character
}
return out.toString();
}
}
Thank with us