java中int转bit
//byte 与 int 的相互转换public static byte intToByte(int x) { return (byte) x;}/** * Byte转Bit */public static String byteToBit(byte b) { return "" + (byte) ((b >> 0) & 0x1) + ...