How do right read file via stdio? C++

1.6k Views Asked by At

I want to read file via stdio for RapidXML. I used following:

#include <iostream>
#include <rapidxml.hpp>
#include <stdio.h>
#include <Windows.h>

using namespace rapidxml;

int main(int argc, char** argv)
{
    FILE *pFile;
    pFile = fopen("D:\\ColladaFiles\\sample1.dae", "rb");
    long lSize;
    char *buffer;
    size_t result;

    //if error
    if (pFile == NULL) { fputs("File error", stderr); exit(1); }

    // obtain file size:
    fseek(pFile, 0, SEEK_END);
    lSize = ftell(pFile);
    rewind(pFile);

    // allocate memory to contain the whole file:
    buffer = (char*)malloc(sizeof(char)*lSize);
    if (buffer == NULL) { fputs("Memory error", stderr); exit(2); }

    // copy the file into the buffer:
    result = fread(buffer, 1, lSize, pFile);
    if (result != lSize) { fputs("Reading error", stderr); exit(3); }

    /* the whole file is now loaded in the memory buffer. */

    xml_document<> xdoc;
    xdoc.parse<0>(buffer);

    system("pause");
    return 0;
}

RapidXML generated an error. Because If I write buffer following:

std::cout << buffer << std::endl;

Last line is contains a following: enter image description here How do fast read a file for RapidXML?

3

There are 3 best solutions below

3
On

You missed two things:

  1. on malloc:

    buffer = (char*)malloc(sizeof(char)*lSize + 1); //place for '\0';

  2. after fread:

    buffer[lsize]='\0'; //terminate string

You can also use fgets() or std::ifsteam method getline

0
On

The following line expects char array with null termination character(‘\0') at the end of the array.

xdoc.parse<0>(buffer);

So add following lin after reading file, and also allocate space for that '\0’.

buffer[lSize]='\0
0
On

For C++ you shouldn't be reading the file that way. See this question. Read whole ASCII file into C++ std::string

Basically, Try this instead.

std::ifstream t("D:\\ColladaFiles\\sample1.dae"); 
std::stringstream buffer; 

buffer << t.rdbuf(); //read file into stringstream

xdoc.parse<0>(buffer.str().c_str()); // parse it