gpt4 book ai didi

c++ - 无法读取文件 C++

转载 作者:行者123 更新时间:2023-11-30 01:27:07 24 4
gpt4 key购买 nike

目录中有一个文件,我正在尝试读取一个文件,但我不能。我的代码有什么问题。示例取自 http://www.cplusplus.com/forum/beginner/37208/

    #include <iostream>
#include <fstream>
#include <string>
#define MAX_LEN 100
using namespace std;
string inlasning ()
{
string text;
string temp; // Added this line

ifstream file;
file.open ("D:\education\Third course\semestr 2\security\lab1.2\secret_msg.txt");

while (!file.eof())
{
getline (file, temp);
text.append (temp); // Added this line
}


cout << "THE FILE, FOR TESTING:\n" // For testing
<< text << "\n";

file.close();

return text;
}
void main ()
{
inlasning();
}

最佳答案

将文件路径中的\改为\\。 (或到 /)

关于c++ - 无法读取文件 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9340727/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com