使用 Ruby 从二进制字符串中解压一些内容
我正在使用 String::unpack 从二进制流中解压一堆 int 和 double 。如何从该比特流中解压单个比特?我找不到使用 unpack 解码单个位的特定指令。
I'm using String::unpack
to unpack a bunch of ints and double from a binary stream. How can I unpack a single bit from that bitstream? I cannot find a specific directive for decoding single bits with unpack.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解包可以深入到字节级别。您可以使用 'C' 格式读取无符号字节 然后您可以使用位掩码来查询各个地图。
Unpacking can go down to the byte level. You could read an unsigned byte by using the 'C' format and then you can use bitmasks to query individual maps.