xml写代码

时间:2021-10-30 20:10:22
  1. #include <QDomDocument>
  2. #include <QtGui>
  3. int main(int argc, char *argv[])
  4. {
  5. QApplication a(argc, argv);
  6. QDomDocument doc;
  7. QDomNode instruction = doc.createProcessingInstruction("xml","version = \"1.0\" encoding = \" UTF-8\"");
  8. doc.appendChild(instruction);
  9. QDomElement root = doc.createElement("Notes");
  10. doc.appendChild(root);
  11. QDomElement note = doc.createElement("note");
  12. root.appendChild(note);
  13. QDomElement no = doc.createElement("no");
  14. note.appendChild(no);
  15. QDomText no_text = doc.createTextNode("001");
  16. no.appendChild(no_text);
  17. QFile file("test.xml");
  18. if (!file.open(QIODevice::WriteOnly | QIODevice::Truncate |QIODevice::Text))
  19. return  1 ;
  20. QTextStream out(&file);
  21. out.setCodec("UTF-8");
  22. doc.save(out,4,QDomNode::EncodingFromTextStream);
  23. file.close();
  24. return a.exec();
  25. }