使用c#将.xml文件转换为.txt文件
时间: 2024-01-19 14:04:12 浏览: 270
C#读写xml文件.txt
4星 · 用户满意度95%
您好!要使用C#将XML文件转换为文本文件,您可以使用System.Xml命名空间中的XmlDocument类来解析XML文件,并将其内容写入文本文件。以下是一个示例代码:
```csharp
using System;
using System.IO;
using System.Xml;
class Program
{
static void Main()
{
// 指定要转换的XML文件路径
string xmlFilePath = "path/to/your/xml/file.xml";
// 指定要保存的文本文件路径
string txtFilePath = "path/to/save/text/file.txt";
try
{
// 创建XmlDocument对象并加载XML文件
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(xmlFilePath);
// 使用StringBuilder来构建文本内容
using (StringWriter sw = new StringWriter())
{
using (XmlTextWriter xw = new XmlTextWriter(sw))
{
// 将XmlDocument的内容写入XmlTextWriter
xmlDoc.WriteTo(xw);
// 将XmlTextWriter的内容写入StringBuilder
xw.Flush();
xw.Close();
string xmlContent = sw.ToString();
// 将StringBuilder的内容写入文本文件
File.WriteAllText(txtFilePath, xmlContent);
}
}
Console.WriteLine("XML文件已成功转换为文本文件!");
}
catch (Exception ex)
{
Console.WriteLine("转换过程中出现错误:" + ex.Message);
}
}
}
```
请将`"path/to/your/xml/file.xml"`和`"path/to/save/text/file.txt"`替换为实际的文件路径。上述代码将读取XML文件并将其内容写入指定的文本文件。
阅读全文