c++ fstream问题

用fstream打开文件,该文件要放在哪里?还有格式应该是什么?... 用fstream打开文件,该文件要放在哪里?
还有格式应该是什么?
展开
 我来答
dhsatq
2011-02-08 · TA获得超过1151个赞
知道小有建树答主
回答量:1052
采纳率:33%
帮助的人:773万
展开全部
读文件,不会破坏文件格式的。
假如,这个文件叫test.dat

#include <iostream>
#include <fstream>
using namespace std;
void main(){
fstream fp;
int act[2];
int bill[2][6];
int i,j;
fp.open ("test.dat", fstream::in); //打开文件,下面读
for (j=0;j<2;j++)
{
fp >> act[j];
for (i=0;i<6;i++) fp >> bill[j][i];
};
fp.close(); //关闭文件

// 打印读到的数据
for (j=0;j<2;j++)
{
cout << act[j] << endl;
for (i=0;i<6;i++) cout << bill[j][i] << endl;
cout << endl;
}
}

---------------
test.dat 文件内容:
123
10
11
12
13
14
15

124
10
20
30
40
50
60
百度网友fde8673
2011-02-07 · TA获得超过423个赞
知道小有建树答主
回答量:401
采纳率:0%
帮助的人:550万
展开全部
#include <fstream>
#include <iostream>

int main()
{
std::ifstream inputFile;
inputFile.open("C:\\a.txt");

if(!inputFile)
{
std::cout << "Cannot open file!\n";
}
else
{
int ch;
while( (ch = inputFile.get()) != EOF )
{
std::cout << (char)ch;
}
}

inputFile.close();
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
志远823
2011-02-07 · TA获得超过2296个赞
知道小有建树答主
回答量:913
采纳率:66%
帮助的人:1176万
展开全部
文件可以任意的地方.
STL里和文件有关系的输入输出类主要在fstream.h这个头文件中被定义,在这个头文件中主要被定义了三个类,由这三个类控制对文件的各种输入输出操作,他们分别是ifstream、ofstream、fstream,其中fstream类是由iostream类派生而来.
写出一个文件的例子
#include <fstream>
using namespace std;

int main()
{
ofstream myfile("c:\\1.txt",ios::out|ios::trunc,0);
myfile<<"我要学C++"<<endl<<" Hello,world";
myfile.close()
system("pause");
}
读入文件的例子
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
ifstream myfile;
myfile.open("c:\\1.txt",ios::in,0);
if(!myfile)
{
cout<<"文件读错误";
system("pause");
exit(1);
}
char ch;
string content;
while(myfile.get(ch))
{
content+=ch;
cout.put(ch);//cout<<ch;这么写也是可以的
}
myfile.close();
cout<<content;
system("pause");
}
要注意的是有时候用ifstream或ofstream打开带有中文路径的文件会失败。

解决办法:
1、使用C语言的函数设置为中文运行环境
setlocale(LC_ALL,"Chinese-simplified");

2、使用STL函数设置为系统语言环境
std::locale::global(std::locale(""));
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式