c#读取xml文件,并将读取到的内容放入txt文档中
比如xml文件:<?xmlversion="1.0"encoding="gb2312"?>-<成绩表>-<学员1><学号>1001</学号><姓名>abc</姓名><成绩...
比如xml文件:
<?xml version="1.0" encoding="gb2312" ?>
-<成绩表>-<学员1> <学号>1001</学号> <姓名>abc</姓名> <成绩>96</成绩> </学员1>-<学员2> <学号>1002</学号> <姓名>abcd</姓名> <成绩>90</成绩> </学员2> </成绩表>
txt中结果为:
1001,abc,96
1002,abcd,90
帮我解决后再给分 展开
<?xml version="1.0" encoding="gb2312" ?>
-<成绩表>-<学员1> <学号>1001</学号> <姓名>abc</姓名> <成绩>96</成绩> </学员1>-<学员2> <学号>1002</学号> <姓名>abcd</姓名> <成绩>90</成绩> </学员2> </成绩表>
txt中结果为:
1001,abc,96
1002,abcd,90
帮我解决后再给分 展开
1个回答
展开全部
XmlDocument doc = new XmlDocument();
doc.Load(pathXML);
StreamWriter sw = new StreamWriter(patnTxt);
XmlNodeList nodeList = doc.DocumentElement.ChildNodes;
for (int i = 0; i < nodeList.Count; i++)
{
string id = nodeList[i].ChildNodes[0].InnerText;
string name = nodeList[i].ChildNodes[1].InnerText;
string score = nodeList[i].ChildNodes[2].InnerText;
sw.WriteLine(id + "," + name + "," + score);
}
sw.Close();
doc.Load(pathXML);
StreamWriter sw = new StreamWriter(patnTxt);
XmlNodeList nodeList = doc.DocumentElement.ChildNodes;
for (int i = 0; i < nodeList.Count; i++)
{
string id = nodeList[i].ChildNodes[0].InnerText;
string name = nodeList[i].ChildNodes[1].InnerText;
string score = nodeList[i].ChildNodes[2].InnerText;
sw.WriteLine(id + "," + name + "," + score);
}
sw.Close();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询