gpt4 book ai didi

c++ - 使用 CComPtr (C++) 保存 xml header

转载 作者:行者123 更新时间:2023-11-30 04:25:30 25 4
gpt4 key购买 nike

我使用 atl 和 CComPtr,像这样:

CComPtr<IXMLDOMDocument> xml_doc;
HRESULT hr = xml_doc.CoCreateInstance(__uuidof(DOMDocument))
...
HRESULT hr = xml_doc->createElement(CComBSTR(element_name.c_str()), &element);
...
etc

当我调用 xml_doc->save 时,它​​会保存没有标题的 xml。添加标题最简单的方法是什么?

最佳答案

已解决:

HRESULT hr;

CComPtr<IXMLDOMProcessingInstruction> proc_instr;
hr = xml_out->createProcessingInstruction(L"xml", L"version=\"1.0\" encoding=\"UTF-8\"", &proc_instr);
if (FAILED(hr))
throw std::exception("Failed to create IXMLDOMDocument processing instruction");


CComPtr<IXMLDOMNode> first_child;
hr = xml_out->get_firstChild(&first_child);
if (FAILED(hr))
throw std::exception("Failed to get first child of IXMLDOMDocument");

hr = xml_out->insertBefore(proc_instr, CComVariant(first_child), NULL);
if (FAILED(hr))
throw std::exception("Failed to insert IXMLDOMDocument processing instruction");


hr = xml_out->save(CComVariant(header->output_file.c_str()));
if (FAILED(hr))
throw std::exception("Failed to save response XML to '" + header->output_file + "'");

http://msdn.microsoft.com/en-us/library/windows/desktop/ms755439(v=vs.85).aspx

关于c++ - 使用 CComPtr<IXMLDOMDocument> (C++) 保存 xml header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12116657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com