I try to open a txt File for reading / writing in one task. My prior target is to exchange some characters by the saved ones in an array:
void Inputfile::decryptFile(string filename)
{
for(int i=0;i<15;i++)
{
fstream filedest(filename.c_str(), ios::in | ios::out);
if(!filedest)
cerr << "Konnte Zieldatei nicht oeffnen!\n";
else
cout << endl << filename << " geoeffnet zum entschluesseln!\n";
while(!filedest.eof())
{
filedest.get(ch);
if(ch == char(this->mostcharsencrypted[i]))
{
filedest.put(char(this->mostchars[i]));
}
}
filedest.close();
cout << "Fertig!";
}
}
mostcharsencrypted[] and mostchars[] are integer Arrays that hold the characters. I am sure that there is just 8 Bit Ansii Value in, and I check that even before this method gets called.
So if the currently read character is the one at the current array position (i: 0 - 14) then i want to exchange the character in the txt-file with the one from mostchars[].
Currently I can see that I get exactly the type of matches, but my txt file still shows the same content.
while (!stream.eof())is almost always wrong. Who's teaching this crap?! – Lightness Races in Orbit Mar 30 '11 at 22:50charare probably unnecessary. – Lightness Races in Orbit Mar 30 '11 at 22:51