存档

文章标签 ‘xml’
1,074 views

简单的 MSXML 应用代码

2010年1月29日

参考资料为 MSXML

只有代码, 没有文字, 最后的结果像这样:

<?xml version="1.0" encoding="UTF-8"?>
<Parent Depth="0">
	<Child1 Depth="1">This is a child of Parent</Child1>
	<Child2 Depth="1">
		<Child3 Depth="2">
			<Child4 Depth="3">This is a child of Child3</Child4>
		</Child3>
	</Child2>
</Parent>

阅读全文…

技术心得

917 views

试了试 xmllite 库, 相当难用

2010年1月16日

今天想找一个将 xml 文件序列化的解决方案, 找到了 xmllite, 微软提供的, 试了试, 相当难用.

难用是因为这些接口没有与 msxml 的接口交互的机制, 可惜了.

看来得另外想办法了

demo

日常琐碎