#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");
}
為什麼會出現圖中的情況?!
圖片說明
參考C++讀寫文件
你上面貼的代碼和你的截圖代碼都不一樣,你在接受鍵盤輸入的代碼是怎麼樣的?試試下面的代碼或者你的代碼是否有判斷用戶輸入了回車,結束輸入?
while(read.get(m,50,'\0')!=NULL)cout<<m; //注意結束條件的判斷