QFile file("F:/5.7/projectt/WorkTest/config.xml");//指定xml文件
file.open(QFile::WriteOnly | QFile::Text);//打开xml文件
QXmlStreamWriter stream(&file);
stream.setAutoFormatting(true);//自动设置格式,这样会自动换行和添加缩进
stream.writeStartDocument();//<?xml version="1.0" encoding="UTF-8"?>函数会自动添加首行的XML说明
一般操作需要注意带颜色的地方就可以了
stream.writeStartElement("MIMA");//最外围的标签
//stream.writeAttribute("href", "http://qt.io/")//没用上,可以自己试试效果
stream.writeTextElement("title", "num");//添加元素可以使用
stream.writeEndDocument();//来完成文档的写入
file.close();