如何将数字按位字节顺序转换为字节数组
我正在尝试使用 zlib API 解压缩在 VB6 中创建的一些数据。
我读过 qUncompress 函数可以实现这一点: http://doc.trolltech.com/4.4/qbytearray.html#qUncompress
我已通过 readRawBytes 将 QDataStream 中的数据读入字符中 数组,然后我将其转换为 QByteArray 进行解压。 我 有压缩长度和预期的解压长度,但我没有得到 从 qUncompress 返回的任何内容。
但是,我需要以大端格式预先考虑预期的解压缩长度。 有人做过这个并有例子吗?
I am trying to uncompress some data created in VB6 using the zlib API.
I have read this is possible with the qUncompress function:
http://doc.trolltech.com/4.4/qbytearray.html#qUncompress
I have read the data in from QDataStream via readRawBytes into a char
array, which I then converted to a QByteArray for decompression. I
have the compressed length and the expected decompressed length but am not getting
anything back from qUncompress.
However I need to prepend the expected decompressed length in big endian format. Has anybody done this and have an example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
感谢您的所有帮助,这很有用。
我得到了可以使用的代码:
Thank you for all your help, it was useful.
The I got the code working with:
反过来:
Conversely:
从你的问题中我不清楚你是否想要在 VB 中添加长度以便它适合 qUncompress 直接使用,或者你是否想像现在一样使用 VB 生成的数据并在之前在 C++ 中添加长度调用 qUncompress。
Mike G 已发布了 VB 解决方案。 如果您想在 C++ 中执行此操作,那么您有两种选择,要么在 QByteArray 的开头添加长度,要么直接调用 zlib 的解压缩。 在这两种情况下,qCompress 和 qUncompress 的 Qt 源代码 (corelib/tools/qbytearray.cpp) 都是一个很好的参考。
这就是 qCompress 将长度(nbytes)添加到 bazip(压缩数据)的方式:
其中 bazip 是结果 QByteArray
或者,如果您想直接调用 uncompress,而不是使用 qUncompress 包装器,则它使用的调用是
其中 baunzip 是 QByteArray。 在您的情况下,您将删除+4和-4,因为您的数据没有预先添加长度。
It wasn't clear to me from your question whether you want to prepend the length in VB so that it is suitable for direct use by qUncompress or whether you wanted to use the VB produced data as it is now and prepend the length in C++ before calling qUncompress.
Mike G has posted a VB solution. If you want to do it in C++ then you have two choices, either add the length at the start of the QByteArray or call zlib's uncompress directly. In both cases the Qt source for qCompress and qUncompress (corelib/tools/qbytearray.cpp) are a good reference.
This is how qCompress adds the length (nbytes) to bazip, the compressed data:
where bazip is the result QByteArray
Alternatively if you want to call uncompress directly, instead of using the qUncompress wrapper the call it uses is
where baunzip is a QByteArray. In your case you would drop the +4 and -4 since your data does not have the length prepended to it.
我已经多年没有使用过VB6了,所以我希望这大致是正确的。 我认为 vb6 使用 () 进行数组索引。 如果我有任何问题,请告诉我。
查看 qUncompress 文档,您应该将数据从字节 5 开始放入 QByteArray 中(在本示例中,我假设您将数组索引基数设置为 1)。
假设该数组名为 qArr,预期的未压缩大小为 Size。
在“大端”表示中,第一个字节位于第一个地址。
那有意义吗?
如果您需要小尾数,您可以反转索引的顺序 (qArr(4) - qArr(1)) 并保持计算不变。
I haven't used VB6 in ages, so I hope this is approximately correct. I think that vb6 used () for array indexing. If I got anything wrong, please let me know.
Looking at the qUncompress docs, you should have put your data in your QByteArray starting at byte 5 (I'm going to assume that you left the array index base set to 1 for this example).
Let's say the array is named qArr, and the expected uncompressed size is Size.
In a "big-endian" representation, the first byte is at the first address.
Does that make sense?
If you needed little endian, you could just reverse the order of the indexes (qArr(4) - qArr(1)) and leave the calculations the same.
这就是我将任意数据从一种格式转换为另一种格式的方法。
如果您正在处理 FileIO,那么您可以使用 TempLB 的字节字段。
技巧是使用 LSET,这是 VB6 的一个晦涩命令。
如果您使用 .NET,则执行过程会容易得多。 这里的技巧是使用 MemoryStream 来检索和设置各个字节。 现在您可以对 int16/int32/int64 进行数学运算。 但如果您正在处理浮点数据,使用 LSET 或 MemoryStream 会更清晰且更易于调试。
如果您使用的是 Framework 版本 1.1 或更高版本,那么您将拥有使用字节数组的 BitConvertor 类。
This is how I can convert arbitary data from one format to another.
If you are dealing with FileIO then you can use the Byte fields of TempLB
The trick is using LSET an obscure command of VB6
If you are using .NET then doing the process is much easier. Here the trick is using a MemoryStream to retrieve and set the individual bytes. Now you could do math for int16/int32/int64. But if you are dealing with with floating point data, using LSET or the MemoryStream is much clearer and easier to debug.
If you are using Framework version 1.1 or beyond then you have the BitConvertor Class which uses arrays of bytes.
看起来您需要一段 C 代码来解压缩一些 zlib 压缩数据。
在这种情况下,您是否可以实际使用 zlib 并将 zlib 数据提供给它。 zlib 主页:http://www.zlib.net/。
如果我弄错了,您能否具体说明应该使用什么语言来解压缩数据以及为什么 zlib 不是一个选择?
It looks like you want a C chunk of code that uncompresses some zlib compressed data.
In that case is it possible for you to actually use zlib and just feed the zlib data to it. The zlib homepage: http://www.zlib.net/.
If I got it wrong, could you be specific what is the language that should be used for uncompressing the data and why zlib would not be a choice?