如何打印出文件的内容? C++ 文件流

How do I print out the contents of a file? C++ File Stream

我正在使用 fstream 和 C++,我想让我的程序做的就是将我的 .txt 文件的内容打印到终端。这可能很简单,但我在网上看了很多东西,但找不到任何对我有帮助的东西。我怎样才能做到这一点?这是我到目前为止的代码:

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

int main() {
    string output;
    ifstream myfile;
    ofstream myfile2;

    string STRING;
    myfile.open ("/Volumes/LFARLEIGH/Lucas.txt");

    myfile2 << "Lucas, It Worked";

        myfile >> STRING;
        cout << STRING << endl;
    myfile.close();


    return 0;
}

提前谢谢你。如果这很简单,请原谅我,因为我对 C++ 很陌生

没有理由在这里重新发明轮子,因为这个功能已经在标准 C++ 库中实现了。

#include <iostream>
#include <fstream>

int main()
{
    std::ifstream f("file.txt");

    if (f.is_open())
        std::cout << f.rdbuf();
}
#include <iostream>
#include <fstream>

int main()
{
    string name ;
    std::ifstream dataFile("file.txt");
    while (!dataFile.fail() && !dataFile.eof() )
    {
          dataFile >> name ;
          cout << name << endl;
    }

试试这个,只是修改了一些地方。您曾尝试使用提取器(即 ifstream)打开文件,但使用插入器(即 ofstream)覆盖该文件 在不打开文件的情况下,ifstreamofstream 是两个不同的 类。所以,他们不明白。

#include<iostream>
#include<fstream>

using namespace std;

int main(){

    string output;
    ifstream myfile;
    ofstream myfile2;

    string STRING;
    // output stream || inserting
    myfile2.open ("/Volumes/LFARLEIGH/Lucas.txt");

    myfile2 << "Lucas, It Worked";


    myfile2.close();

    // input stream || extracting

    myfile.open("/Volumes/LFARLEIGH/Lucas.txt");

        myfile >> STRING;
        cout << STRING << endl;
    myfile.close();


   return 0;
}