在QByteArray中插入一个整数

时间:2016-01-01 00:46:06

标签: c++ qt qbytearray

我正在尝试使用QDataStream和QByteArray读取二进制数据文件,进行一些更改,然后另存为新文件。

我有以下内容:

QDataStream in_datastream(&file);
QByteArray fileByteArray = file.readAll();
//find my insertion point
int pos = fileByteArray.indexOf(magic_num, 0);

//move to insertion point, minus 4 bytes (size of an integer)
file.seek(pos-4);
int current_val;
//check what the value is here
in_datastream >> current_val;

//now, I want to replace that value..but how?

此时我已经尝试了几件事,但似乎无法弄清楚如何使其发挥作用。我想在QByteArray中的(pos-4)处插入整数5000。

//remove 4 bytes..this seems to work
fileByteArray.remove(pos-4, 4);
//actually inserts garbage.
fileByteArray.insert(pos-4, newInteger);

如果我尝试插入4个字符的字符串" TEST",它们都会正确插入。我想我有一些类型转换问题试图在那里放一个整数。

1 个答案:

答案 0 :(得分:0)

首先,整数的大小不仅可以是4,而且可以是8个字节,因此您应该使用sizeof(integer)而不是4.然后您可以使用Qstring::number(newInteger)将整数转换为字符串。可以使用QString::toLatin1()

将QString转换为bytearray