c++ ofstream获取txt全部内容
时间: 2023-08-18 10:08:05 浏览: 81
要获取一个 txt 文件的全部内容,可以使用 ifstream 类来读取文件。以下是一个读取 txt 文件并将其输出到控制台的示例代码:
```c++
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::string filename = "example.txt";
std::ifstream ifs(filename);
if (ifs.is_open()) {
std::string line;
while (std::getline(ifs, line)) {
std::cout << line << std::endl;
}
ifs.close();
}
else {
std::cerr << "Failed to open file: " << filename << std::endl;
return 1;
}
return 0;
}
```
在上面的代码中,我们首先定义了一个文件名 `example.txt`,然后使用 `std::ifstream` 类打开该文件。如果文件成功打开,我们使用 `std::getline` 函数逐行读取文件内容,并将其输出到控制台。最后,我们关闭文件并返回程序结束。如果打开文件失败,我们将向标准错误输出流打印错误消息,并返回非零值以表示程序异常结束。
希望这个代码对你有所帮助!
阅读全文