Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

hex

Decode/encode hex string
Saturday, 28 August 2010 08:06
// decode/encode hex string


public static String toHexString(byte[] ba) {
String hex = "";
for(int i = 0; i < ba.length; i++)
hex += zeroPad(Integer.toHexString(ba[i] & 0xFF).toUpperCase(), 2);
return hex;
}

public static byte[] fromHexString(String hex) {
ByteArrayOutputStream bas = new ByteArrayOutputStream();
for (int i = 0; i < hex.length(); i+=2) {
int b = Integer.parseInt(hex.substring(i, i + 2), 16);
bas.write(b);
}
return bas.toByteArray();
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Nn-1eCK9nuE/12139

 
Random HEX JavaScript Generator
Wednesday, 02 June 2010 20:38
// Random HEX JavaScript Generator


'#'+Math.floor(Math.random()*16777215).toString(16);

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/sYUluaPWACo/11519

 


Taxonomy by Zaragoza Online