c++怎么读取文件中的中文字符串的几种方法

本文介绍了使用C++进行文件读取的四种不同方法,包括逐词读取、逐字符读取、按行读取以及使用getline进行读取。这些方法适用于不同的应用场景,并提供了灵活的选择。

方法一:


#include <fstream>
#include <string>
#include <iostream>
using namespace std;

int main()
{
 ifstream ifs("test.cpp"); // 改成你要打开的文件
 streambuf* old_buffer = cin.rdbuf(ifs.rdbuf());

 string read;
 while(cin >> read) // 逐词读取方法一
  cout << read;
 cin.rdbuf(old_buffer); // 修复buffer
}

方法二:

#include <iostream>
#include <fstream>
using namespace std;

int main()
{
 ifstream ifs("test.cpp"); // 改成你要打开的文件
 ifs.unsetf(ios_base::skipws);

 char c;
 while(ifs.get(c)) // 逐词读取方法二
 {
  if(c == ' ')
   continue;
  else
  cout.put(c);
 }
}
方法三:

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main()
{
 ifstream ifs("test.cpp"); // 改成你要打开的文件

 string read;
 while(getline(ifs, read, ' ')) // 逐词读取方法三
 {
  cout << read << endl;
 }
}

方法四:

#include <fstream>
#include <iostream>
using namespace std;

int main()
{
 ifstream ifs("test.cpp"); // 改成你要打开的文件

 char buffer[256];
 while(ifs.getline(buffer, 256, ' ')) // 逐词读取方法四
 {
  cout << buffer;
 }
}




评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值