C++中关于用fstream创建文件的问题
#include<iostream>usingnamespacestd;#include<fstream>intmain(){fstreamdatafile("info....
#include<iostream>
using namespace std;
#include<fstream>
int main()
{
fstream datafile("info.dat",ios::in|ios::out|ios::binary);
if(datafile.fail())
{
cout<<"文件打开失败"<<endl;
exit(0);
}
……
}
如果info.dat不存在,此语句应该是可以创建它的,我用.txt文件都是可以创建的,可是运行时就说我打开文件失败,这是为什么? 展开
using namespace std;
#include<fstream>
int main()
{
fstream datafile("info.dat",ios::in|ios::out|ios::binary);
if(datafile.fail())
{
cout<<"文件打开失败"<<endl;
exit(0);
}
……
}
如果info.dat不存在,此语句应该是可以创建它的,我用.txt文件都是可以创建的,可是运行时就说我打开文件失败,这是为什么? 展开
2个回答
展开全部
你用了ios::in,表示要读入文件,所以程序会认为已有这个文件,而不会去创建。你要是把ios::in去掉就能创建了。
另外你说用.txt文件可以创建,我试过了,不行。
另外你说用.txt文件可以创建,我试过了,不行。
追问
我弄错了,.txt试的那次没有ios::in的。还有,我看到书上原话是“采用ios::out和ios::in模式打开文件时,如果文件不存在,将创建一个新文件”。。。八成被这话给骗了,我也试了,除非自己先创建好ifo.dat,或者去掉ios::in,否则就打开失败。书错了吧。。。。
追答
我也觉得用in模式的话,文件都不存在,即使创建了,也是空文件啊,读个鸟啊。感觉这有逻辑上的错误。估计谭浩强写书的时候笔误了,然后其他作者互相抄来抄去,都没有去验证。
展开全部
我之前也出现这问题,具体原因我也不知道。我最后是改成单独的读或写文件来做的。
你可以这样测试下:
#include<iostream>
using namespace std;
#include<fstream>
int main()
{
fstream iofile("info.dat",ios::in|ios::out|ios::binary);
if(iofile.fail())
{
cout<<"打开读和写文件失败"<<endl;
}
else
{
cout<<"打开读和写文件成功"<<endl;
iofile.close();
}
ifstream infile("d:\\info.dat",ios::in|ios::binary);
if(infile.fail())
{
cout<<"打开读文件失败"<<endl;
}
else
{
cout<<"打开读文件成功"<<endl;
infile.close();
}
ofstream outfile("d:\\info.dat",ios::out|ios::binary);
if(outfile.fail())
{
cout<<"打开写文件失败"<<endl;
}
else
{
cout<<"打开写文件成功"<<endl;
outfile.close();
}
ifstream infile2("d:\\info.dat",ios::in|ios::binary);
if(infile2.fail())
{
cout<<"打开读文件失败"<<endl;
}
else
{
cout<<"打开读文件成功"<<endl;
infile2.close();
}
fstream iofile2("info.dat",ios::in|ios::out|ios::binary);
if(iofile2.fail())
{
cout<<"打开读和写文件失败"<<endl;
}
else
{
cout<<"打开读和写文件成功"<<endl;
iofile2.close();
}
cout<<"测试完成"<<endl;
cin.get();
return 0;
}
你可以这样测试下:
#include<iostream>
using namespace std;
#include<fstream>
int main()
{
fstream iofile("info.dat",ios::in|ios::out|ios::binary);
if(iofile.fail())
{
cout<<"打开读和写文件失败"<<endl;
}
else
{
cout<<"打开读和写文件成功"<<endl;
iofile.close();
}
ifstream infile("d:\\info.dat",ios::in|ios::binary);
if(infile.fail())
{
cout<<"打开读文件失败"<<endl;
}
else
{
cout<<"打开读文件成功"<<endl;
infile.close();
}
ofstream outfile("d:\\info.dat",ios::out|ios::binary);
if(outfile.fail())
{
cout<<"打开写文件失败"<<endl;
}
else
{
cout<<"打开写文件成功"<<endl;
outfile.close();
}
ifstream infile2("d:\\info.dat",ios::in|ios::binary);
if(infile2.fail())
{
cout<<"打开读文件失败"<<endl;
}
else
{
cout<<"打开读文件成功"<<endl;
infile2.close();
}
fstream iofile2("info.dat",ios::in|ios::out|ios::binary);
if(iofile2.fail())
{
cout<<"打开读和写文件失败"<<endl;
}
else
{
cout<<"打开读和写文件成功"<<endl;
iofile2.close();
}
cout<<"测试完成"<<endl;
cin.get();
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询