字节数组按二进制字符串打印输出
public static void main(String[] args) throws UnsupportedEncodingException { String c = "中"; byte[] bs = c.getBytes("GBK"); for (int i = 0; i < bs.length; i++) { System.out.print(byteToBit((b