来自字符串的 XmlNode 的内部文本
无论如何,我可以用字符串创建节点吗?我在网上搜索了一些东西,但找不到任何有用的东西!
string _configFileName = @"d:\junk\config.xml";
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(_configFileName);
string xmlTags = @"<queue name=queueName autoStart=true>
<deleteFile>true</deleteFile>
<impersonation enabled=true>
<user>domain\username</user>
<password encrypted="true">********</password>
</impersonation>
<tasks>
<task>cp</task>
<task>rm</task>
</tasks>
</queue>";
queueParent.InnerText = str;//the Xml parent node of the new queue node that I want to add
xmldoc.Save();//will write <queue name= INSTEAD OF <queue name=
所以问题出在 XML 中的特殊字符“<”和“>”以“<”形式写入文件和“>”。 非常感谢您的意见,谢谢。
Is there anyway I can create nodes out of a string? I've searched the Web looking for something, but couldn't find anything that works!
string _configFileName = @"d:\junk\config.xml";
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(_configFileName);
string xmlTags = @"<queue name=queueName autoStart=true>
<deleteFile>true</deleteFile>
<impersonation enabled=true>
<user>domain\username</user>
<password encrypted="true">********</password>
</impersonation>
<tasks>
<task>cp</task>
<task>rm</task>
</tasks>
</queue>";
queueParent.InnerText = str;//the Xml parent node of the new queue node that I want to add
xmldoc.Save();//will write <queue name= INSTEAD OF <queue name=
So the problem is having the special characters in XML "<" and ">" written into the file as "<" and ">".
Your input is much appreciated, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您想要
InnerXml
属性而不是InnerText
。例如:
I think you want the
InnerXml
property instead ofInnerText
.For example:
您可以使用 xmldoc.LoadXml(xmlTags) 从字符串创建 XmlDocument
You can create an XmlDocument from a string using xmldoc.LoadXml(xmlTags)