QFile/QDataStream 写入现有数据

发布于 2024-09-12 19:05:19 字数 279 浏览 6 评论 0原文

我有一个文件,假设长度为 8 个字节。 例如,它看起来像这样:

22222222

现在,我首先读取 5 个字节并更改它们。对于前。到 11111

最后,我想将它们写入现有数据到文件中,所以我希望文件看起来像这样:

11111222

但我只得到 11111< /code>,因为文件被删除。如何禁用擦除? (也许这个问题存在,但找不到这样的问题)

I have got a file which is let's say 8 bytes length.
For example it looks like that:

22222222

Now, I read first let's say 5 bytes and changing them. For ex. to 11111

Finally, I want to write them ONTO EXCISTING DATA to the file, so I expect the file to look like that:

11111222

But I get only 11111, because file is erased. How can I disable erasing? (Maybe this question exists, but couldn`t find question like this one)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

瑾夏年华 2024-09-19 19:05:19

根据您对文件的具体操作,您可能需要对其进行内存映射:

QFile f("The file");
f.open(QIODevice::ReadWrite);
uchar *buffer = f.map(0, 5);

// The following line will edit (both read from and write to)
// the file without clearing it first:
for (int i=0; i<5; ++i) buffer[i] -= 1;

f.unmap(buffer);
f.close();

Depending on what you are exactly doing with the file, you might want to memory map it:

QFile f("The file");
f.open(QIODevice::ReadWrite);
uchar *buffer = f.map(0, 5);

// The following line will edit (both read from and write to)
// the file without clearing it first:
for (int i=0; i<5; ++i) buffer[i] -= 1;

f.unmap(buffer);
f.close();
无边思念无边月 2024-09-19 19:05:19
void fileopen()
{
QDataStream Input(&file);
Input>>"11111";
Input>>"22222";
file.close();
}

该函数写入数据。

QDataStream &operator<<(QDataStream &ds,const QString &data)
{

ds<<data.toLatin1().data();
ds<<data.toLatin1().data();
return ds;
}
void fileopen()
{
QDataStream Input(&file);
Input>>"11111";
Input>>"22222";
file.close();
}

this function write the data.

QDataStream &operator<<(QDataStream &ds,const QString &data)
{

ds<<data.toLatin1().data();
ds<<data.toLatin1().data();
return ds;
}
肩上的翅膀 2024-09-19 19:05:19

尝试使用 | 打开 QFile QIODevice::Append,然后是 QFile::seek(),然后在 QFile 对象上创建 QDataStream。但请注意,QDataStream 将控制信息添加到输出中,因此这可能不会产生您想要的结果。

另外,如果您想写入文本而不是二进制数据,请尝试使用 QTextStream。

Try to open the QFile with | QIODevice::Append, then QFile::seek(), then create the QDataStream on the QFile object. But note that QDataStream adds control information to the output, so that probably doesn't result in exactly what you want.

Also if you want to write text, not binary data, try with QTextStream.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文