C#拼接xml

1、xml字符串示例

<?xml version="1.0" encoding="utf-8" standalone="no"?><DATA><ITEMS><ITEM><ID>01<ID/><CODE>0001<CODE><NAME>测试1<NAME/></ITEM></ITEMS></DATA>

2、方法

private string Getxml()

{

XmlDocument document = new XmlDocument();

XmlDeclaration xd = document.CreateXmlDeclaration("1.0", "utf-8", "");

XmlElement root = null;

document.AppendChild(document.CreateElement("DATA"));

root = document.DocumentElement;

document.InsertBefore(xd, root);

XmlElement items = document.CreateElement("ITEMS");

XmlElement item = document.CreateElement("ITEM");

items .AppendChild(item);

XmlElement id = document.CreateElement("ID");

item.AppendChild(id);

XmlElement code = document.CreateElement("CODE");

item.AppendChild(code);

XmlElement code = document.CreateElement("NAME");

item.AppendChild(name);

root.AppendChild(items);

string xmlData = document.OuterXml;

//存xml

if (!string.IsNullOrEmpty(xmlData))

{

XmlDocument doc = new XmlDocument();

doc.LoadXml(xmlData);

string filepath = "C:\\Test\\test.xml";

doc.Save(filepath);

}

return xmlData;

}

相关推荐
步、步、为营3 小时前
C# 探秘:PDFiumCore 开启PDF读取魔法之旅
开发语言·pdf·c#·.net
weixin_495774203 小时前
c# S7通信测试
开发语言·c#
黄同学real4 小时前
实现一个安全且高效的图片上传接口:使用ASP.NET Core和SHA256哈希
安全·asp.net·哈希算法
lixww.cn5 小时前
.NET Core跨域
.netcore
朴拙数科6 小时前
pyautogui操控Acrobat DC pro万能PDF转Word,不丢任何PDF格式样式
pdf·c#·word
KpLn_HJL6 小时前
leetcode - 127. Word Ladder
leetcode·c#·word
__water9 小时前
22_解析XML配置文件_List列表
c#·list·列表·unity6000·解析xml配置文件
深度混淆12 小时前
C#,入门教程(05)——Visual Studio 2022源程序(源代码)自动排版的功能动画图示
开发语言·c#·自动排版
步、步、为营12 小时前
Avalonia+ReactiveUI跨平台路由:打造丝滑UI交互的奇幻冒险
ui·c#·.net·交互
望天hous15 小时前
C# 中使用Hash用于密码加密
开发语言·c#·哈希算法