如何将 xml 字符串读入 XMLTextReader 类型
我有一个 XML 字符串。我需要将此字符串转换为 dotnet 中的 XMLTextReader(System.Xml.XMLTextReader) 类型。
我使用了以下代码:
string szInputXml = "<TestDataXml><DataName>testing</DataName></TestDataXml>" ;
XmlTextReader reader = new XmlTextReader(new System.IO.StringReader(szInputXml));
但是执行后reader内部的字符串为空。
请帮助我弄清楚需要做什么才能让 XMLTextReader 填充给定的字符串。
I have an XML string. I need to convert this string into XMLTextReader(System.Xml.XMLTextReader) type in dotnet.
I used the following code:
string szInputXml = "<TestDataXml><DataName>testing</DataName></TestDataXml>" ;
XmlTextReader reader = new XmlTextReader(new System.IO.StringReader(szInputXml));
But the string inside the reader is empty after execution.
Please help me to figure out what needs to be done to get the XMLTextReader to be populated with the given string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何判断字符串是否为空?
没有第三行,“内部”确实是空的。现在它包含测试。
How do you determine if the string is empty?
Without 3rd line "inner" was empty indeed. Now it contains testing.