从.cpp文件读取时出现问题

时间:2013-09-04 15:16:21

标签: c++

我有一个调用text.cpp的文件。我的任务是从文件中读取的。

text.cpp 文件(文件内)

#include <iostream>     
#include <cstring>
#include <ctype.h>
#include "program.h"
#include "binarytree.h" 
#include "linkedlist.h"

当我发现

 '#' symbol

系统将开始循环,如果它检测到'<' & '"'符号,它将打印出剩余字。     示例输出:iostraem

我可以检测'<'符号并打印输出成功。 但是,当我检测到'"'符号时,我可以打印保留字(program.h),但它会跟在该字词后面烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫

我知道我的代码有什么不对吗?

我的代码如下:

 #include <iostream>
    #include <string>
    #include <fstream>

    using namespace std;

    int main()

    {   char temPlate[100];
        char FileName[20];


    cout << "Enter Filename:" ;
    cin >> FileName;

    fstream read(FileName);
    if (read.is_open())
    {
        while(!read.eof())
        {
        read.getline(temPlate, 100);

            for (int k = 0; k < 100 ;k++)
            {
                if(temPlate[k] == '#')
                {
                    for(int i = 0; i < 100; i++)
                    {
                        if(temPlate[i] == '<' ||  temPlate[i] == '"')
                        {
                            for (int j = i+1; j < 100; j++)
                            {
                                if(temPlate[j] == '>' || temPlate[j] == '"')
                                {
                                    break;

                                }
                                cout << temPlate[j];

                            }
                            cout  <<endl;
                        }       
                    }
                 }
            }
        }
    }

    else
    {
        cout << "File does not exist, press enter to exit the program." <<  endl;
        system("pause");
        exit(EXIT_SUCCESS);

    }
    system("pause");

}

输出:

Enter FileName: text.cpp
iostream
cstring
ctype.h
program.h
 ype.h
binarytree.h
 烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫
linkedlist.h
 烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫

5 个答案:

答案 0 :(得分:3)

最近,这是因为你正在扫描整个缓冲区,而不仅仅是在最后一个getline()中实际读入的部分。

但是在更基础的层面上,这是因为你使用的是字符数组而不是字符串。 C ++字符串有很多原因,但其中一个重要原因是避免与固定大小的缓冲区相关的许多错误。

答案 1 :(得分:0)

你的专栏:

for(int i = 0; i < 100; i++)

应该是:

for(int i = k+1; i < 100; i++)

答案 2 :(得分:0)

你不应该使用:

while(!read.eof())

因为仅在读取文件中的最后一个字符后才设置EOF位。 有关更多信息,请查看此主题: Why is iostream::eof inside a loop condition considered wrong?

答案 3 :(得分:0)

使用while (std::getline(stream, line))代替while(!stream.eof()),同时避免使用C风格的字符串〜&gt;改为使用std::string个对象。

逐行解析文件可能如下所示:

std::string filename;
std::cout << "Enter Filename: ";
std::cin >> filename;

std::ifstream read(filename.c_str());
if (read.is_open())
{
    std::string line;
    while (std::getline(read, line))
    {
        // skip empty lines:
        if (line.empty())
            continue;
        ...

现在,不是采用“程序”方法,每行的处理可能如下所示:

std::size_t pos = line.find("#include");
if (pos != std::string::npos)
    processInclude(line.substr(pos + 8));

并且为了避免“烹饪意大利面条代码”,有时候将一些功能提取到独立功能中而不是嵌套另一个范围(if(){ for(){ if(){ for(){ ...)会很简洁:

void processInclude(std::string line)
{
    std::string filename;
    for (size_t i = startPos; i < line.size(); ++i)
    {
        if (line[i] == '<')
        {
            std::getline(std::istringstream(line.substr(i + 1), filename, '>');
            break;
        }
        else if (line[i] == '"')
        {
            std::getline(std::istringstream(line.substr(i + 1), filename, '"');
            break;
        }
    }
    if (!filename.empty())
        std::cout << filename << std::endl;
}

希望这有助于或者让你以一种不同的方式看待你的代码:)

答案 4 :(得分:0)

这实际上比它需要的更复杂。你可能会考虑这样的事情:

#include <iostream>
#include <string>
#include <fstream>

int main()
{   
    std::string inputFilename;
    std::cout << "Enter Filename:";
    std::cin >> inputFilename;

    std::ifstream inputFile(inputFilename);
    if(inputFile)
    {
        std::string line;
        while(std::getline(inputFile, line))
        {
            if(line.find('#') != std::string::npos)
            {
                size_t startPos = line.find_first_of("<\"");
                size_t endPos = line.find_last_of(">\"");
                if(startPos != std::string::npos && endPos != std::string::npos)
                {
                    //advance start to after the < or "
                    ++startPos;
                    //sanity check just in case the line was ill formed
                    if(startPos < endPos)
                    {
                        std::cout << line.substr(startPos, endPos - startPos) << std::endl;
                    }
                }
            }
        }
    }
    else
    {
        std::cout << "File '" << inputFilename << "' does not exist." <<  std::endl;
    }
    return 0;
}