C++ifstream、读取文件,打开文件时出错。
stringstr,strTotal;ifstreamin;in.open("cacheB.cch");//出错。getline(in,str);while(in){st...
string str,strTotal;
ifstream in;
in.open("cacheB.cch"); //出错。
getline(in,str);
while ( in ) { strTotal += str; getline(in,str); }
in.close();
不知道打开文件为什么出错。 展开
ifstream in;
in.open("cacheB.cch"); //出错。
getline(in,str);
while ( in ) { strTotal += str; getline(in,str); }
in.close();
不知道打开文件为什么出错。 展开
2个回答
展开全部
include <fstream>
ofstream outfile("f.txt",ios::out);
if(!outfile)
{
cerr<<"open error!"<<endl;
exit(1);
}
可以试试这种方法打开文件,写数据
ofstream outfile("f.txt",ios::out);
if(!outfile)
{
cerr<<"open error!"<<endl;
exit(1);
}
可以试试这种方法打开文件,写数据
追问
我要读取文件啊。
追答
#include "stdlib.h"
......
FILE *fp;
char s[100];//可自己换
fp=fopen("f.txt","r");//根据文件类型换
if(fp==NULL)
{
cout<<"open error"<<endl;
exit(1);
}
while(!feof(fp))
{
fgets(s,100,fp);//一次读100个字符
cout<<s;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的文件有没有放在工程目录下啊?如果没有的花,就要把文件的路径写清楚,如in.open("C:\\测试数据\\data.cch")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询