我有6个整数 25 五 三十 6 20 36 在txt文件中。该程序打开txt文件确定。在main中的“cout for loop”中,程序输出看起来是整数的二进制表示。但是,输出文件包含提取相同的整数,而不是二进制数据。我从课本中得到了这个样本。如何修复它以读取整数并写出二进制整数?
#include "lib.h"
//========================================================================================
//========================================================================================
void open_infile(ifstream& ifs)
{
string infile;
cout << "Please enter the name of the file:";
cin >> infile;
ifs.open(infile.c_str(), ios_base::binary);
if (!ifs) error("can't open out file");
}
//========================================================================================
//========================================================================================
void open_outfile(ofstream& ost)
{
string outfile;
cout << "Please enter the name of the file:";
cin >> outfile;
ost.open(outfile.c_str(), ios_base::binary);
if (!ost) error("can't open out file");
}
//========================================================================================
//========================================================================================
void get_fileContent(ifstream& ifs, vector<int>& v)
{
int i = 0;
while(ifs.read(as_bytes(i),sizeof(int)))
v.push_back(i);
}
//========================================================================================
//========================================================================================
void write_fileContent(ofstream& ost, vector<int>& v)
{
for(int i =0; i < v.size(); ++i)
{
ost.write(as_bytes(v[i]),sizeof(int));
}
}
//========================================================================================
//========================================================================================
int main()
{
ifstream ifs;
ofstream ost;
vector<int> v;
open_infile(ifs);
get_fileContent(ifs, v);
//just checking to make sure data is being copied to int vector correctly
for(int i =0; i < v.size(); ++i)
{
cout<< endl << v[i]<< endl;
}
open_outfile(ost);
write_fileContent(ost, v);
keep_window_open();
}
//========================================================================================
//========================================================================================
main中for循环的输出是: 168637746 856296757 906628400 808585741 909314573
答案 0 :(得分:1)
如果您希望文件看起来像输出到stdout,那么您需要像cout
那样编写它:
void write_fileContent(ofstream& ost, vector<int>& v)
{
for (int i = 0; i < v.size(); ++i)
{
ost << endl << v[i]<< endl;
}
}
operator<<
执行格式化输出,而write
执行无格式输出。
答案 1 :(得分:0)
void write_fileContent(ofstream& ost, vector<int>& v)
{
for(int i =0; i < v.size(); ++i)
{
ost.write( reinterpret_cast< char* >( &v[i] ), sizeof(int) );
}
}
这应该有用。