gpt4 book ai didi

c++ - 尝试读取二进制文件会清除文件本身

转载 作者:行者123 更新时间:2023-11-28 01:48:34 25 4
gpt4 key购买 nike

我刚开始使用 C++ 处理二进制文件,我已经成功地写入和读取了一个 (.bin) 文件。这是代码:

#include <iostream>
#include <cstring>
#include <fstream>

using namespace std;

int main()
{
char input[100];

strcpy(input, "This is a string");

fstream file("example.bin", ios::binary | ios::in | ios::out |
ios::trunc);

if(!file.is_open())
{
cerr << "Error opening file.\n";
} else {
for(int i = 0; i<= strlen(input); i++)
{
file.put(input[i]);
}
}

file.seekg(0);
char ch;

while(file.good())
{
file.get(ch);
cout<<ch;
}
}

这成功了。之后,我尝试重新设计代码以只读取二进制文件。主要变化是:将 fstream 更改为 ifstream(读取),删除了写入文件的部分。代码准备好后,我找到了一个我想读取的文件 (eof0.bin)。当我使用代码时,我唯一得到的是一个空字符串。我注意到文件的初始大小是 37 KB,而使用我的程序后它变成了 0。我想知道,我的程序如何清除二进制文件中的数据?

这是我用来读取文件的代码。

#include <iostream>
#include <cstring>
#include <fstream>

using namespace std;

int main()
{

ifstream file("eof0.bin", ios::binary | ios::in | ios::out | ios::trunc);

if(!file.is_open())
{
cerr << "Error opening file.\n";
} else {
// Nothing.
}

file.seekg(0);
char ch;

while(file.good())
{
file.get(ch);
cout<<ch;
}


}

一切都可以编译,但是在 37 KB 的文件上使用它会得到 0 KB 的文件。

最佳答案

您使用打开模式 std::ios_base::trunc 打开。来自 http://en.cppreference.com/w/cpp/io/ios_base/openmode我们可以看到它

discard[s] the contents of the stream when opening

所以只需使用:

// also dropped ios::out since you only want to read, not write
ifstream file("eof0.bin", ios::binary | ios::in);

此外,这

char ch;
while(file.good())
{
file.get(ch);
cout<<ch;
}

不是读取文件的合适方式。想一想一个空文件会发生什么:打开它后,它是“好”的(记住,只有当某些输入操作遇到 eof 时才会设置 eofbit)。然后 get 失败,ch 保持原样,从而调用未定义的行为。更好地在输入操作后直接测试流状态:

char ch;
while (file.get(ch)) {
// use ch
}
// optionally distinguish eof and fail cases

有关读取文件的更多背景信息,请参阅 Why is iostream::eof inside a loop condition considered wrong?

关于c++ - 尝试读取二进制文件会清除文件本身,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43886913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com