我有一個XML字符串我怎樣才能得到的數值數據出MSXML :: IXMLDOMElement
<grandparent>
<parent>
<child>dave</child>
<child>laurie</child>
<child>gabrielle</child>
</parent>
</grandparrent>
我想要得到的是數據原始XML這是父裏面。 我使用MSXML
iXMLElm->get_xml(&bStr);
正在恢復
<parent>
<child>dave</child>
<child>laurie</child>
<child>gabrielle</child>
</parent>
。
iXMLElm->get_text(&bStr);
回報 davelauriegabrielle
應怎樣使用功能,如果我想獲得?
<child>dave</child>
<child>laurie</child>
<child>gabrielle</child>
是否有人知道這些功能的一些很好的文檔?我見過的所有東西都是一個相連的噩夢。
有些情況下,這可能是一個非常糟糕的主意。 – Owl 2017-05-11 16:46:42