Android Utililty Methods StringBuffer Append

List of utility methods to do StringBuffer Append

Description

The list of methods to do StringBuffer Append are organized into topic(s).

Method

voidappendHex(StringBuffer sb, byte b)
utility function to transfer the byte data.
sb.append(HEX.charAt((b >> 4) & 0x0f)).append(HEX.charAt(b & 0x0f));