用C ++读入txt文件

时间:2013-04-30 09:11:13

标签: c++ ifstream getline

我有一个像这样的.txt参数文件:

#Stage
filename = "a.txt";
...

#Stage
filename = "b.txt";
...

基本上我想在每次访问参数文件时读取一个阶段。 我计划在C ++中使用getline并使用分隔符“#Stage”来执行此操作。或者有更好的方法来解决这个问题?任何示例代码都会有所帮助。

3 个答案:

答案 0 :(得分:0)

*struct content{
    DATA data;
    content* next;
};
struct List{
    content * head;
};

static List * list;
char buf[100];
FILE * f = fopen(filename);
while(NULL != fgets(buf,f))
{
    char str[100] ={0};
    sccanf(buf,"%s",str);
    if(strcmp("#Stage",str) == 0)
    {
        // read content and add to list
        cnntent * p = new content();
        list->add();

    }
    else
    {
        //update content in last node
        list->last().data = 
    }
}*

答案 1 :(得分:0)

也许我应该表达得更清楚。无论如何,我这样管理:

ifstream file1;
file1.open(parfile, ios::binary);
if (!file1) {
    cout<<"Error opening file"<<parfile<<"for read"<<endl;
    exit(1);
}

std::istreambuf_iterator<char> eos;
std::string s(std::istreambuf_iterator<char>(file1), eos);

unsigned int block_begin = 0;
unsigned int block_end = string::npos;

for (unsigned int i=0; i<stage; i++) {

    if(s.find("#STAGE", block_begin)!=string::npos) {
    block_begin = s.find("#STAGE", block_begin);
    }
}

if(s.find("#STAGE", block_begin)!=string::npos) {
block_end = s.find("#STAGE", block_begin);
}


string block = s.substr(block_begin, block_end);

stringstream ss(block);
....

答案 2 :(得分:-1)

我会逐行阅读,忽略这些行,从#开始(或行,内容为#Stage,具体取决于格式/目标)(因为没有{{1} }版本,以getline作为分隔符。)