Android Utililty Methods Byte to Char Convert

List of utility methods to do Byte to Char Convert

Description

The list of methods to do Byte to Char Convert are organized into topic(s).

Method

chargetChar(byte b)
get Char
return (char) (0xff & b);
charmakeChar(byte b1, byte b0)
make Char
return (char) ((b1 << 8) | (b0 & 0xff));