Month: March 2010

  • Convert byte to binary representation

    Use the following to show a byte value in binary representation. [sourcecode lang=”java”] /** * Returns a 0 padded binary representation of the * passed byte. For example, returns "00000001" if passed * the byte 1. Returns "11111111" if passed byte -1. * @param b the byte * @return the byte in binary representation */…