3

我有一个名为的函数readNextString(ifstream &file , char* &pBuffer),它从文件中提取下一个字符串,直到',''\n'到达,删除字符串开头和结尾的空格,将其余部分保存在 pBuffer 中,如果一切正常则返回 true - 否则返回 false。一切正常,直到到达文件末尾。设置eof标志后,我无法移动我的 get 指针。我试过这个:

if(file.eof())
{
   file.clear();
   file.seekg(0 , ios::end)
}

...然后删除字符串末尾的空格。这几乎有帮助。该函数提取没有空格的字符串,但我得到一个无限循环。

我的实际问题是:如何检查下一个字符是否为EOF,如果不能 - 有没有其他方法可以做到这一点?

这是我的实际功能:

bool readNextString(ifstream &file , char* &pBuffer)
{
    if(file.eof()){
        return false;
    }
    for(; file.good() && isWhitespace(file.peek()) && !file.eof() ; file.seekg(1 , ios::cur))
        ;
    if(file.eof()){
        cout << "The file is empty.\n";
        return false;
    }else{
        streamoff startPos = file.tellg();
        cout << "startPos : " << startPos << endl;
        for(;file.good() && file.peek()!='\n' && file.peek()!=',' && file.peek()!= EOF; file.seekg(1 , ios::cur))
            ;
        streamoff A = file.tellg();
        cout << "A : " << A << endl;
        file.seekg(-1 , ios::cur);
        for(;file.good() && isWhitespace(file.peek()) ; file.seekg(-1 , ios::cur))
            ;
        file.seekg(2 , ios::cur);
        streamoff endPos = file.tellg();
        cout << "endPos : " << endPos << endl;
        pBuffer = new char[endPos-startPos];
        if(pBuffer)
        {
            file.seekg(startPos , ios::beg);
            file.get(pBuffer , endPos-startPos , ',' || '\n');
            for(;file.good() && file.peek()!='\n' && file.peek()!=',' && file.peek()!= EOF; file.seekg(1 , ios::cur))
                ;
            file.seekg(2 , ios::cur);
            streamoff temp = file.tellg();
            cout << "temp : " << temp << endl;
            return true;
        }else{
            cout << "Error! Not enough memory to complete the task.\nPlease close some applications and try again.\n";
            return false;
        }
    }
}

这就是我称之为的一个地方:

void printCities()
{
    ifstream city ;
    city.open("cities.txt", fstream::in);
    if(city.is_open())
    {
        char *currCity;
        int counter = 1;
        while(readNextString(city , currCity))
        {
            cout << counter++ << ". " << currCity << endl;
            delete[] currCity;
            currCity = NULL;
        }
        if(city.eof())
            cout << "There are no cities added.\n";
        city.close();
    }else
        cout << "Error by opening 'cities.txt'.Make sure that the file exist and try again.\n";
}

希望我足够清楚。如果您发现一些其他错误或可能的错误,我会很高兴听到并从中学习。

4

3 回答 3

3

如何检查下一个字符是否为 EOF?

像这样

if (file.peek() == EOF)
{
    // next char is EOF
    ...
}
于 2013-05-01T12:11:00.070 回答
2

首先,不要使用 seek 跳过空格。只需获得角色并完成它。

其次,您似乎误解了 istream::good()and的含义istream::eof()从来没有合适的 地方istream::good()istream::eof()通常只有输入失败后才合适。至于您的循环跳过空白,通常的解决方案是:

while ( isspace( file.peek() ) && file.peek() != EOF ) {
    file.get();     //  ignore read character...
}

其他循环也有类似的注释,只是您不想忽略读取的字符。收集字符直到下一个',',例如:

std::string field;
while ( file.peek() != ',' && file.peek() != EOF ) {
    field.push_back( file.get() );
}

(而且你file.get( pBuffer, endPos - startPos, ',' || '\n' ) 当然不会做你期望的那样;表达式',' || '\n'将始终计算为true,当转换为 a 时char,就是'\01。)

最后,虽然上述策略可行,但最好将更大的文本单元输入到 中std::stream,然后解析它。如果文本是面向行的,请使用以下内容:

std::string line;
while ( std::getline( file, line ) ) {
    //  Parse line, using std::istringstream if appropriate,
    //  although this doesn't seem to be the case for your code.
}

这比您正在做的事情要简单几个数量级。

于 2013-05-01T14:18:29.670 回答
0

好的。我这样做了!getline() 为胜利!:D 所以这是我的代码(这次更具可读性):

bool readNextString(ifstream &file , char pBuffer[] )
{
    while(isWhitespace(file.peek()) && !file.eof())
        file.ignore(1);
    if(!file.eof())
    {
        streamoff start = file.tellg();
        stringstream toComma;
        if(file.getline(pBuffer , 200 , ','))
        {
            toComma << pBuffer;
            toComma.getline(pBuffer ,200, '\n');
            int i=strlen(pBuffer)-1;
            for(; isWhitespace(pBuffer[i]) ;i--)
                ;
            pBuffer[i+1] = '\0';
            file.clear();
            file.seekg(start + strlen(pBuffer) , file.beg);
            return true;
        }else return false;
    }
    return false;
}

我也对其他功能进行了一些更改:

void printCities()
{
    ifstream city ;
    city.open("cities.txt", fstream::in);
    if(city.is_open())
    {
        if(!isEmpty(city))
        {
            char currCity[200];
            int counter = 1;
            while(readNextString(city , currCity) && counter < 10)
                cout << counter++ << ". " << currCity << endl;
        }else
            cout << "There are no cities added.\n";
        city.close();
    }else
        cout << "Error by opening 'cities.txt'.Make sure that the file exist and try again.\n";
}

如果文件为空,则该函数isEmpty(ifstream &file)返回 true,否则返回 false。

感谢大家的帮助!此致 !

于 2013-05-01T23:59:15.160 回答