I want to read an XML file into a char *buffer using C.
What is the best way to do this?
How should I get started?
feedback
|
|
Is reading the contents of the file into a single, simple buffer really what you want to do? XML files are generally there to be parsed, and you can do this with a library like libxml2, just to give one example (but notably, is implemented in C). | |||
|
feedback
|
|
You can use the stat() function to get the file size. then allocate a buffer using malloc after it reading the file using fread. the code will be something like that:
| |||||||||||||
feedback
|
|
Hopefully bug-free ISO-C code to read the contents of a file and add a '\0' char:
| ||||
|
feedback
|
|
Here is a full program that reads in a whole XML file (really, any file), into a buffer. It includes about as much error-checking as would be useful. N.B. everything is done in (Tested, compiled with GCC 4.3.3. Switches were Comments on this will be addressed in approximately eight hours.
| |||
|
feedback
|
|
There are also a bunch of answers for a similar question at http://stackoverflow.com/questions/238603/how-can-i-get-a-files-size-in-c | |||
|
feedback
|
|
And if you want to parse XML, not just reading it into a buffer (something which would not be XML-specific, see Christoph's and Baget's answers), you can use for instance libxml2:
On an Unix machine, you typically compile the above with:
| |||
|
feedback
|
|
I believe that question was about XML parsing and not about file reading, however OP should really clarify this. | |||
|
feedback
|
Suggestion: Use memory mappingThis has the potential to cut down on useless copying of the data. The trick is to ask the OS for what you want, instead of doing it. Here's an implementation I made earlier: mmap.h
mmap.c
| |||
|
feedback
|