从文件中读取c ++总是无法读取
Read from file c++ always can't read
ifstream myfile;
myfile.open("FileTest");
string line;
if(myfile.is_open())
{
cout<<"Reading from file...";
getline(myfile,line);
}
if(myfile.fail())
{
cout<<"Unable to open file"<<endl;
}
myfile.close();
C++ 尝试打开当前目录中具有确切名称 FileTest
的文件。检查文件是否在当前目录?也许你拼错了名字?也许你忘了写FileTest.txt
?您正在使用 ifstream
,如果您尝试打开的文件不存在或已损坏,它将失败。
ifstream myfile;
myfile.open("FileTest");
string line;
if(myfile.is_open())
{
cout<<"Reading from file...";
getline(myfile,line);
}
if(myfile.fail())
{
cout<<"Unable to open file"<<endl;
}
myfile.close();
C++ 尝试打开当前目录中具有确切名称 FileTest
的文件。检查文件是否在当前目录?也许你拼错了名字?也许你忘了写FileTest.txt
?您正在使用 ifstream
,如果您尝试打开的文件不存在或已损坏,它将失败。