Save an XML DOM Object to a File (C/C++)
Saving an XML DOM object is also known as serializing the DOM. It involves a call to the save
method on the DOM object. To demonstrate this, we will continue from the previous exercise, and save the DOM object that was loaded from stocks.xml to a different file, myStocks.xml.
This project uses or creates the following files.
Component | Description |
---|---|
Source: saveDOM.cpp | Saves an XML DOM object, pXMLDom , to a new file. |
Output | When you build and run the saveDOM project, you should get this output in a console window. |
To create the loadDOM Visual C++ project
- Create a Win32 console application in Visual C++. For detailed instructions on how to do this, see Set Up My Visual C++ Project. Name the project saveDOMProj.
Next, we'll add the source code for the saveDOM project.