从二进制文件中读取char *

时间:2014-10-15 08:07:52

标签: c++ binary char ifstream

我必须将文件的名称存储到我正在编写的二进制文件中,我现在写的是这样的:

void write(map<char, bits> &bitstring,map<char,int> &ccount, string header,string fname,ofstream     &outf)
{
ifstream inf(header+fname);
cout << "FName: " << fname << endl;
const char * pName = fname.c_str();
fname = header+ fname + ".mcp";
const char * c = fname.c_str();
FILE* pFile;
pFile = fopen(c, "w+b");
inf.seekg(ios::beg, ios::end);
int size = inf.tellg();
int length = 0;
string data = "";
int magicNum = 2262;
int fileNameSize = strlen(pName);
fwrite(&fileNameSize, sizeof(int), 1, pFile);
cout <<"FIle Name Size: "<< fileNameSize << endl;
fwrite(pName, fileNameSize, 1, pFile);
fclose(pFile);

}

我还发送文件名的大小,以便我知道需要读取多少数据才能获得整个文件名。

void read2(string fname, map<char, int> &charCounts, std::vector<bool> &bits,ofstream &outf)
{
string fname1 = fname + ".mcp", outfile = "binarycheck";

bool testDone = false, counts = false;
std::ifstream inf(fname1, std::ios::binary);
std::ofstream ouf("binarycheck.txt", std::ios::binary);
char character;

int count[1] = { 0 };
int checkcount = 0;
int mNum[1] = { 0 }, size[1] = { 0 };


int FNamesize = 0;
inf.read((char*)&FNamesize, sizeof(int));
char *name=new char[FNamesize+1];
inf.read(name, FNamesize);
name[FNamesize] = '\0';
string str(name);
cout << "File Name: ";
cout << std::string(name) << endl;
cout << "Magic Num: " << mNum[0] << endl;
cout << "File Name Size: " << FNamesize<< endl;


inf.close();
}

我正确地获得了大小,但我不知道如何遍历名称以便将其保存为字符串。我尝试使用矢量,但它没有真正帮助,因为inf.read使用char *作为其第一个参数。 任何帮助都会很棒。

2 个答案:

答案 0 :(得分:1)

嗯,在一次侥幸的事故中,我最终解决了自己的问题。出于某种原因我宣布了

FILE* pFile;
pFile = fopen(c, "w+b"); 

宣布

之前
const char * pName = fname.c_str();

在将pName写入文件之前,该调用损坏了pName的值,这是导致错误的原因。问题解决了!

答案 1 :(得分:0)

看到你正在使用ifstream,为什么不使用ofstream呢?然后只需要ofs << filename来存储ifs >> filename来读取filename是字符串的位置。你自己也不用费力。