C++之读取和写入文件

C++之读取和写入文件

在C++中使用std::ifstream来读取文件, 使用std::ofstream来写入文件,比如txt, yaml等文件。

读取文件

#include <string>
#include <fstream>

std::string file_name;
std::ifstream file_reader(file_name);
if (file_reader.is_open())
{
  while (file_reader.peek() != EOF)
  {
  std::string line;
  std::getline(file_reader, line, '\n');
  // do something
  }
  file_reader.close();
}
else
{
std::cerr << "Fail to open file !" << std::endl;
}
  • 使用while(!file_reader.eof())判断最后一行,该命令会把最后一行读两遍,所以使用while (file_reader.peek() != EOF)。

写入文件

#include <string>
#include <fstream>

std::string file_name;
std::ofstream file_writer(file_name, std::ios_base::out)
file_writer << "AA" << "\t" << std::endl;
file_writer.close();

参考

C++ fstream流的eof()函数多读一行的问题 - guoduhua的专栏 - CSDN博客
[c++ - Why does ifstream.eof() not return TRUE after reading the last line of a file? - Software Engineering Stack Exchange](

转载于:https://www.cnblogs.com/ChrisCoder/p/10098744.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值