Click here to Skip to main content
15,885,811 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Folks,
I need a code for converting XML to CSV. The Language may be C/C++.
Really stuck and no help for the required language in net.

A soluition will be a great.

Thanks.
Posted

Hi,

there are many ways you can achive this. It is good to know that you can make it even without programing in C++. So, let's see the possibilities:

- First you can make it by XSL transformation by which you can convert any XML to HTML, TXT, CVS or XML. See W3C School or MSDN.

- Another way is to use come library for XML. In C++ or Visual Basic you can use MSXML taht will give you the possibility to use DOM or SAX for processing and traversing XML in your application.

- Thisrd possibility is combination of previous points. You just create XSL trasformation and your application will apply it (by using MSXML) to the XML.

Hope this helps,
J. K.
 
Share this answer
 
I would probably use DOM provided by MSXML for the task, have a look at Program with DOM in C/C++[^]. There are alternatives, however, like for instance XmlLite[^] or the SAX API[^] of the MSXML itself. There are also many open source XML libraries.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900