How to convert BitSet to binary string effectively?

后端 未结 2 584
面向向阳花
面向向阳花 2021-01-12 19:58

I am looking for an efficient way how to easily convert a BitSet to a binary string. Let us say that its usual length would be thousands of bits.

For ex

2条回答
  •  执笔经年
    2021-01-12 20:41

    String bitsStr = String.format("%8s", Integer.toBinaryString(bits.toByteArray()[0] & 0xFF)).replace(' ', '0');
    

提交回复
热议问题