C# 将数据保存进xml文件
inti=1;//首先创建XmlDocumentxml文档XmlDocumentxml=newXmlDocument();//创建根节点configxml.AppendC...
int i = 1;
//首先创建 XmlDocument xml文档
XmlDocument xml = new XmlDocument(); //创建根节点 config
xml.AppendChild(xml.CreateXmlDeclaration("1.0", "utf-8", ""));
XmlElement one = xml.CreateElement("功能测试参数"); //把根节点加到xml文档中
xml.AppendChild(one);
XmlElement two = xml.CreateElement(comboBox1.Text);
one.AppendChild(two);
XmlElement three = xml.CreateElement("测试项目");
foreach (string item in listBox1.Items) //每次需要保存的东西
{
string str = "项目" + i.ToString();
i++;
three.SetAttribute(str, item); //str=item
}
two.AppendChild(three);
xml.Save(Application.StartupPath + "\\功能测试参数.xml");
我需要按下按钮就可以把listbox1中的数据保存进xml文件中(不覆盖),上面的相当于每次新建一个xml文件,需要怎么修改呀 求帮助~~~ 谢谢哇! 展开
//首先创建 XmlDocument xml文档
XmlDocument xml = new XmlDocument(); //创建根节点 config
xml.AppendChild(xml.CreateXmlDeclaration("1.0", "utf-8", ""));
XmlElement one = xml.CreateElement("功能测试参数"); //把根节点加到xml文档中
xml.AppendChild(one);
XmlElement two = xml.CreateElement(comboBox1.Text);
one.AppendChild(two);
XmlElement three = xml.CreateElement("测试项目");
foreach (string item in listBox1.Items) //每次需要保存的东西
{
string str = "项目" + i.ToString();
i++;
three.SetAttribute(str, item); //str=item
}
two.AppendChild(three);
xml.Save(Application.StartupPath + "\\功能测试参数.xml");
我需要按下按钮就可以把listbox1中的数据保存进xml文件中(不覆盖),上面的相当于每次新建一个xml文件,需要怎么修改呀 求帮助~~~ 谢谢哇! 展开
1个回答
展开全部
XmlDocument xml;
string path=Application.StartupPath + "\\功能测试参数.xml";
if(System.IO.File.Exists(path)){
xml = new XmlDocument();
doc.Load(path); //加载XML文档
}
else
{
xml = new XmlDocument(); //创建根节点 config
xml.AppendChild(xml.CreateXmlDeclaration("1.0", "utf-8", ""));
XmlElement one = xml.CreateElement("功能测试参数"); //把根节点加到xml文档中
xml.AppendChild(one);
}
XmlElement two = xml.CreateElement(comboBox1.Text);
one.AppendChild(two);
XmlElement three = xml.CreateElement("测试项目");
foreach (string item in listBox1.Items) //每次需要保存的东西
{
string str = "项目" + i.ToString();
i++;
three.SetAttribute(str, item); //str=item
}
two.AppendChild(three);
xml.Save(path);
追问
读取数据的时候,滴21行的item怎么获得呀。。。
追答
foreach (string item in listBox1.Items)
这里不是直接获取listBox的值吗
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询