1

ファイルが特定の場所にあるときに、fstream がファイルに書き込めないという問題があります。次のコードでは、コメント行のコメントを外すとファイルが書き込まれますが、コメントするとファイルはまったく書き込まれません。コンソール出力の束を追加しましたが、「outputFile << newWord << endl;」の周りの両方の出力が表示されます。完了しますが、ファイルが実際に書き込まれることはありません。

void write_index( string newWord )
{
fstream outputFile( "H:\\newword.txt", ios::app );
int same = 0;
string currWord;
currWord.resize(5);
//outputFile << newWord << endl;
while( !outputFile.eof() )
{
    getline( outputFile, currWord );
    cout << "Checking if " << newWord << "is the same as " << currWord << endl;
    if( newWord == currWord )
    {
        cout << "It is the same" << endl;
        same = 1;
        break;
    }
}
if( same != 1 )
{
    cout << "Writing " << newWord << "to file" << endl;
    outputFile << newWord << endl;
    cout << "Done writing" << endl;
}
outputFile.close();

}

4

1 に答える 1

2

私はあなたがこれらの線に沿って何かを探していると確信しています:

void write_index( const string& newWord )
{
    fstream outputFile( "H:\\newword.txt", ios::in);
    bool same = false;

    if (outputFile)
    {
        string currWord;
        while (getline(outputFile, currWord))
        {
            cout << "Checking if " << newWord << " is the same as " << currWord << endl;
            same = (newWord == currWord);
            if (same)
            {
                cout << "It is the same" << endl;
                break;
            }
        }
    }

    if (!same)
    {
        outputFile.close();
        outputFile.open("H:\\newword.txt", ios::app);

        cout << "Writing " << newWord << "to file" << endl;
        outputFile << newWord << endl;
        cout << "Done writing" << endl;
    }

    outputFile.close();
}

これを行うためのより良い方法がありますが、それはおそらく適切な出発点になるでしょう.

于 2013-02-27T02:55:33.387 に答える