使用 msxml6/IXMLDOMDocument2 删除 XML 声明
从使用 C++/COM 的 XML 中删除 XML 声明,
<?xml version="1.0" encoding="UTF-8" ?>
我只想使用 msxml6
的 IXMLDOMDocument2
接口
如何实现此目的?
I want to remove XML declaration only from an XML using C++/COM-
<?xml version="1.0" encoding="UTF-8" ?>
using the IXMLDOMDocument2
interface of msxml6
How can I achieve this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 IXMLDocument::xml 属性并将字符串保存到文件中。
Use IXMLDocument::xml property and save the string to a file.