java基础问题java中如何将byte型的数转化为八位二进制形式[解决办法]byte b = 16;System.out.println(Integer.toBinaryString(Integer.valueOf(b)));