将整个 ASCII 文件读入 C++ std::string


下面是将整个 ASCII 文件读入 C++ 中的 std::string 的一种简单方法:-

算法

Begin
   Declare a file a.txt using file object f of ifstream type to perform read operation.
   Declare a variable str of string type.
   If(f)
      Declare another variable ss of ostringstream type.
      Call rdbuf() fuction to read data of file object.
      Put the data of file object in ss.
      Put the string of ss into the str string.
   Print the value of str.
End.

示例

#include<iostream>
#include<fstream>
#include<sstream>
#include<string>
using namespace std;
int main() {
   ifstream f("a.txt"); //taking file as inputstream
   string str;
   if(f) {
      ostringstream ss;
      ss << f.rdbuf(); // reading data
      str = ss.str();
   }
   cout<<str;
}

输入

a.txt data file containing the text “hi”

输出

hi

更新时间: 2020 年 6 月 24 日

1.4 万+ 次浏览

开启你的 职业生涯

通过完成该课程获得认证

入门
广告