3个回答
展开全部
读文件,不会破坏文件格式的。
假如,这个文件叫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
假如,这个文件叫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
展开全部
#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;
}
#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;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
文件可以任意的地方.
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(""));
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(""));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询