0

我目前有一个小程序,可以将 .txt 文件的内容重写为字符串。

但是我想将文件的所有内容收集为一个字符串,我该怎么做呢?

#include <iostream>
#include <fstream>
#include <string>


using namespace std;


int main () {
    string file_name ; 


    while (1 == 1){
        cout << "Input the directory or name of the file you would like to alter:" << endl;
        cin >>  file_name ;


        ofstream myfile ( file_name.c_str() );
        if (myfile.is_open())
        {
        myfile << "123abc";

        myfile.close();
        }
        else cout << "Unable to open file" << endl;


    }


}
4

5 回答 5

6
#include <sstream>
#include <string>

std::string read_whole_damn_thing(std::istream & is)
{
    std::ostringstream oss;
    oss << is.rdbuf();
    return oss.str();
}
于 2010-11-03T06:59:23.387 回答
5

您声明一个字符串和一个缓冲区,然后使用 while not EOF 循环读取文件并将缓冲区添加到字符串。

于 2010-11-03T06:57:31.083 回答
4

libstdc++ 家伙对如何使用rdbuf.

重要的部分是:

std::ifstream in("filename.txt");
std::ofstream out("filename2.txt");

out << in.rdbuf();

我知道,您问过将内容放入string. 你可以通过制作out一个std::stringstream. 或者您可以将其添加到std::string增量中std::getline

std::string outputstring;
std::string buffer;
std::ifstream input("filename.txt");

while (std::getline(input, buffer))
    outputstring += (buffer + '\n');
于 2010-11-03T06:56:05.987 回答
3
string stringfile, tmp;

ifstream input("sourcefile.txt");

while(!input.eof()) {
    getline(input, tmp);
    stringfile += tmp;
    stringfile += "\n";
}

如果要逐行执行,只需使用字符串向量即可。

于 2010-11-03T06:58:56.320 回答
1

您还可以在将每个字符分配给字符串的同时迭代和读取文件,直到到达 EOF。

这是一个示例:

#include "stdafx.h"
#include <iostream>
#include <fstream>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    char xit;
    char *charPtr = new char();
    string out = "";
    ifstream infile("README.txt");

    if (infile.is_open())
    {
        while (!infile.eof())           
        {
            infile.read(charPtr, sizeof(*charPtr));
            out += *charPtr;
        }
        cout << out.c_str() << endl;
        cin >> xit;
    }
    return 0;
}
于 2010-11-03T07:37:27.643 回答