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;
}
展开
 我来答
ly17227720
2013-07-02 · TA获得超过610个赞
知道小有建树答主
回答量:170
采纳率:100%
帮助的人:131万
展开全部
#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
风若远去何人留
2013-07-02 · 知道合伙人互联网行家
风若远去何人留
知道合伙人互联网行家
采纳数:20412 获赞数:450108
专业C/C++软件开发

向TA提问 私信TA
展开全部
ios::app 可以以追加方式打开文件
参考
http://wenku.baidu.com/view/40ba6e2ced630b1c59eeb556.html
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式