XML mit Java und C++: http://www.informatik.uni-trier.de/~naeher/Professur/courses/ss2002/data/xml/oop.pdf
Linkliste C/C++: http://cplus.kompf.de/links.html
Microsoft XML Core Services: http://www.perfectxml.com/CPPMSXML/20020710.asp
XML class for processing and building simple XML documents: http://www.codeproject.com/KB/cpp/markupclass.aspx
The XML C parser and toolkit of Gnome – libxml: http://www.xmlsoft.org/
XML Grundlagen: http://www.microsoft.com/germany/msdn/library/data/xml/XMLBasics.mspx?mfr=true
Ein kleiner und schneller XML-Parser für systemeigenes C++ : http://msdn.microsoft.com/msdnmag/issues/07/04/Xml/default.aspx?loc=de#contents
XML for beginners and experts: http://www.codeproject.com/KB/cpp/XmlHelper.aspx
XML http://www.wer-weiss-was.de/theme-i193.html
// ========================================= // Das könnte man mit C++ so machen: #include <iostream> #include <string> #include <fstream> using namespace std; // Open File for Writing of stream NewFile; NewFile.open ("TEST.XML", ios::out | ios::app); // Content String string content; content = content + "<xml>\n"; content = content + "<tag>InnerText</tag>"\n"; content = content + "</xml>\n"; // Write to File NewFile<<content; // Close File NewFile.close();
Antworten