C++中,向文件里输入数据,我想接着以前的继续往下输入,而不是删掉文件里已有的
应该怎么做呢,这是我的代码:#include<fstream>#include<iostream>#include<string>usingnamespacestd;in...
应该怎么做呢,这是我的代码:
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
int main()
{
ofstream file("f1.txt",ios::out);
char *c;
c=(char *)malloc(sizeof(char)*100);
if(!file)
{
cout<<"open error."<<endl;
exit(1);
}
gets(c);
file<<c<<" ";
file.close();
return 0;
} 展开
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
int main()
{
ofstream file("f1.txt",ios::out);
char *c;
c=(char *)malloc(sizeof(char)*100);
if(!file)
{
cout<<"open error."<<endl;
exit(1);
}
gets(c);
file<<c<<" ";
file.close();
return 0;
} 展开
2个回答
展开全部
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
int main()
{
ofstream file("f1.txt",ios::app); //此处第二个参数是文件打开方式,所有方式见代码后
char *c;
c=(char *)malloc(sizeof(char)*100);
if(!file)
{
cout<<"open error."<<endl;
exit(1);
}
gets(c);
file<<c<<" ";
file.close();
return 0;
}
==========================================================================
ios::app 以追加的方式打开文件
ios::ate 文件打开后定位到文件尾,ios:app便包含有此属性
ios::binary 以二进制方式打开文件,缺省的方式是文本方式。
ios::in 文件以输入方式打开(文件数据输入到内存)
ios::out 文件以输出方式打开(内存数据输出到文件)
ios::nocreate 不建立文件,所以文件不存在时打开失败
ios::noreplace 不覆盖文件,所以打开文件时如果文件存在失败
ios::trunc 如果文件存在,把文件长度设为0
以上属性可以用“或”进行连接使用,如ios::out|ios::binary
#include <iostream>
#include <string>
using namespace std;
int main()
{
ofstream file("f1.txt",ios::app); //此处第二个参数是文件打开方式,所有方式见代码后
char *c;
c=(char *)malloc(sizeof(char)*100);
if(!file)
{
cout<<"open error."<<endl;
exit(1);
}
gets(c);
file<<c<<" ";
file.close();
return 0;
}
==========================================================================
ios::app 以追加的方式打开文件
ios::ate 文件打开后定位到文件尾,ios:app便包含有此属性
ios::binary 以二进制方式打开文件,缺省的方式是文本方式。
ios::in 文件以输入方式打开(文件数据输入到内存)
ios::out 文件以输出方式打开(内存数据输出到文件)
ios::nocreate 不建立文件,所以文件不存在时打开失败
ios::noreplace 不覆盖文件,所以打开文件时如果文件存在失败
ios::trunc 如果文件存在,把文件长度设为0
以上属性可以用“或”进行连接使用,如ios::out|ios::binary
展开全部
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询