C++中用ifstream与ofstream,读取的文件的格式应该怎么写啊?

ifstreaminput_data;input_data.open()就是这个括号里面的文件路径的格式应该怎么写我说的是文件路径,请各位看清楚了再回答,谢谢!!!文件不... ifstream input_data;
input_data.open()
就是这个括号里面的文件路径的格式应该怎么写
我说的是文件路径,请各位看清楚了再回答,谢谢!!!文件不在当前文件夹下
展开
 我来答
泪之梦幻
2015-08-28 · TA获得超过2211个赞
知道小有建树答主
回答量:304
采纳率:100%
帮助的人:57万
展开全部

在fstream类中,成员函数open()实现打开文件的操作,从而将数据流和文件进行关联,通过ofstream,ifstream,fstream对象进行对文件的读写操作

函数:open()

<span style="font-family:Times New Roman;font-size:16px;">
public member function

void open ( const char * filename,
            ios_base::openmode mode = ios_base::in | ios_base::out );

void open(const wchar_t *_Filename,
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;ios_base::openmode mode= ios_base::in | ios_base::out,
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;int prot = ios_base::_Openprot);

</span>

参数: filename   操作文件名

           mode        打开文件的方式

           prot         打开文件的属性    

很多程序中,可能会碰到ofstream out("Hello.txt"), ifstream in("..."),fstream foi("...")这样的的使用,并没有显式的去调用open()函数就进行文件的操作,直接调用了其默认的打开方式,因为在stream类的构造函数中调用了open()函数,并拥有同样的构造函数,所以在这里可以直接使用流对象进行文件的操作,默认方式如下:

<span style="font-family:Times New Roman;font-size:16px;">
ofstream out("...", ios::out);
ifstream in("...", ios::in);
fstream foi("...", ios::in|ios::out);

</span>

当使用默认方式进行对文件的操作时,可以使用成员函数is_open()对文件是否打开进行验证

河蟹和谐河蟹
2010-06-08 · TA获得超过1156个赞
知道小有建树答主
回答量:1028
采纳率:0%
帮助的人:790万
展开全部
括号里应该有2个参数,第一个是文件的路径+名称,第二个是标识,比如楼上的例子中的ios::in(读取)ios::out(写入)ios::nocreate(不创建)ios::binary(二进制方式读写)等等。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
askwhy001
2010-06-08
知道答主
回答量:17
采纳率:0%
帮助的人:0
展开全部
input_data.open("要打开的文件",ios::in|A);
ifstream 表示数仍然,ofstream表示输出。其中ios::in表示打开文件输入,A处你可以加上其他功能如:ios::app,ios::binary,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
whl287
2010-06-09 · TA获得超过595个赞
知道小有建树答主
回答量:429
采纳率:0%
帮助的人:0
展开全部
就是文本形式的,如果是Windows系统,例如打开C:\bin\test.txt
input_data.open("c:\\bin\\test.txt");
常见的..和.也支持

Linux系统就是把\\换成/
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ericsoul
2010-06-08 · TA获得超过720个赞
知道小有建树答主
回答量:759
采纳率:0%
帮助的人:665万
展开全部
哎,我也忘了我这是什么程序了。反正是很简单的功能,我用来学习fstream的。希望对你有帮助。

#include <fstream.h>
int main()
{
char a;
ifstream infile("f1.txt",ios::in|ios::nocreate);
if (!infile)
{
cerr<<"can not find!"<<endl;
return 0;
}
ofstream outfile("f2.txt",ios::out);
if (!outfile)
{
cerr<<"open error!"<<endl;
return 0;
}

while(infile>>a)
{
a += 2;
outfile<<a;

}

infile.close();
outfile.close();

ifstream infile1("f2.txt",ios::in|ios::nocreate);
if (!infile1)
{
cerr<<"can not find!"<<endl;
return 0;
}
ofstream outfile1("f3.txt",ios::out);
if (!outfile1)
{
cerr<<"open error!"<<endl;
return 0;
}

while(infile1>>a)
{
a-=2;
outfile1<<a;
}

infile1.close();
outfile1.close();

return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式