文件读入读出当然是最简单的ofstream 和 ifstream,当想从文件的某个位置来读取呢?看下面代码
1.将b.txt中的数据一个一个读到a.txt
char a='0'; ifstream fin("b.txt"); ofstream fout; ifstream::pos_type cur; while(fin>>a) { cur=fin.tellg(); fin.close(); fout.open("a.txt",ios::app); fout<<a; fout<<flush; fout.close(); fin.open("b.txt"); ...
文件读入读出当然是最简单的ofstream 和 ifstream,当想从文件的某个位置来读取呢?看下面代码
1.将b.txt中的数据一个一个读到a.txt
char a='0'; ifstream fin("b.txt"); ofstream fout; ifstream::pos_type cur; while(fin>>a) { cur=fin.tellg(); fin.close(); fout.open("a.txt",ios::app); fout<<a; fout<<flush; fout.close(); fin.open("b.txt"); ...