#include <iostream>
#include <fstream>
#include <string.h>
#include <stdlib.h>
using namespace std;
void main()
{
fstream read;
cout << "Now opening...\n";
read.open("f1.txt", ios::in | ios::out | ios::app);
if (!read)
{
cout << "ERROR!" << endl;
system("pause");
exit(1);
}
cout << "Opening file succeeded.\nNow getting info...\n";
read.clear();
char m[50];
cout << "Now writing info...\n";
read.write(m, 50);
system("pause");
read.close();
system("pause");
}
read是一个local variable, 你对它进行判空操作来确定是否正确打开了某文件的做法是没有意义的。
试试下面的代码或者你的代码是否有判断用户输入了回车,结束输入?
while(read.get(m,50,'0')!=NULL)cout<