目錄中有一個文件,我試圖讀取一個文件,但我不能。我的代碼有什麼問題。例子是從http://www.cplusplus.com/forum/beginner/37208/無法讀取文件C++
#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();
}
輸出是什麼? – SlavaNov 2012-02-18 11:26:30
請記住,\在一個字符串使得任何後面的「特殊」 – Gowtham 2012-02-18 11:28:57