自己写的bit工具

最近因项目需要,要把数据以最紧凑的方式存放,因此需要精确到bit,网上好像找不到现成的工具,只好自己写了一个BitBuffer,类似ByteBuffer的处理,当然现在还只是最基本的功能,不过总比没有好。

现在托管在github上:

https://github.com/xiaosunzhu/bit_utils

 

简单用法:

 

byte[] data = { (byte)210, 50 }; // 11010010  00110010
BitBuffer buffer = BitBuffer.wrapBytes(data);

System.out.println(buffer.remainingBits()); // 16

byte bit = buffer.getByte(2); // get 2 bits, return in a byte.
// This bit is 3.

System.out.println(buffer.remainingBits()); // 14

bit = buffer.getByte(7,8); // This means get 8 bits from 7 position, return in a bytes.
// This bit is 25(00011001).

System.out.println(buffer.remainingBits()); // 14, not change.

// or  byte[] bits = buffer.getBytes(12); // This means get 12 bits, return in 2 bytes.
// This bits is {210, 3}

 

 

 

byte data = (byte)9; // 1001
BitBuffer buffer = BitBuffer.allocate(20);
buffer.put(data, 4); // now buffer is 1001

System.out.println(buffer.remainingBits()); // 16

byte[] datas = new byte[]{ (byte)210, 89 }; // 11010010 01011001
buffer.put(datas, 15); // This means put 15 bits into buffer, buffer is 10011101 00100101 100

System.out.println(buffer.remainingBits()); // 1

buffer.put(data, 2, 4); // This means put 4 bits into buffer, start position is 2
// now buffer is 10100101 00100101 100

System.out.println(buffer.remainingBits()); // 1, not change.

buffer.flip();

System.out.println(buffer.remainingBits()); // 19

 

 

希望有需要的同学都可以试用试用,有什么bug或者什么需求都可以反馈,我会尽量及时完善的。下一个版本我是想加上byte[]区从起始端bit取或者靠末尾端bit取的功能。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值