
xml parser
chu_qun
这个作者很懒,什么都没留下…
展开
-
对循序渐进使用 XML 的 C 和 C++ 程序员的工具的建议
对循序渐进使用 XML 的 C 和 C++ 程序员的工具的建议本文针对哪些不熟悉 XML 开发的 C 和 C++ 程序员,概述了为 XML 开发作准备而装配的工具。工具表概述了常规 XML 工具,如 IDE 和模式设计器、解析器、XSLT 工具、SOAP 和 XML-RPC 库,以及其它可以在 C 和/或 C++ 中使用或者实际上以 C 和/或 C++ 编写的库。本文包括了关于在 Wi转载 2008-09-19 10:10:00 · 965 阅读 · 0 评论 -
TinyXML中文文档
TinyXML中文文档 译注:本文是TinyXML 2.5.2版本Document的中文文档,经原作者Lee Thomason同意由hansen翻译,如有误译或者错漏,欢迎指正。版权:版权归原作者所有,翻译文档版权归本人hansen所有,转载请注明出处。原文:http://www.grinninglizard.com/tinyxmldocs/index.htmlTi转载 2008-09-19 13:34:00 · 778 阅读 · 0 评论 -
有关TinyXML使用的简单总结
这次使用了TinyXML后,觉得这个东西真是不错,于是将使用方法坐下总结来和大家分享。 该解析库在开源网站(http://sourceforge.net )上有下载。 TinyXML是一个开源的解析XML的解析库,能够用于C++,能够在Windows或Linux中编译。这个解析库的模型通过解析XML文件,然后在内存中生成DOM模型,从而让我们很方便的遍历这课XML树。转载 2008-09-18 17:13:00 · 552 阅读 · 0 评论 -
TinyXML Tutorial
TinyXML TutorialWhat is this? This tutorial has a few tips and suggestions on how to use TinyXML effectively. Ive also tried to include some C++ tips like how to convert strings to integers转载 2008-09-19 14:40:00 · 590 阅读 · 0 评论 -
TinyXML(C++)
用mingw32-make前修改一下makefile文件,改为如下# DEBUG can be set to YES to include debugging info, or NO otherwise(不是DEBUG)DEBUG := NO # PROFILE can be set to YES to include profiling info, or NO oth原创 2008-09-20 15:48:00 · 1503 阅读 · 0 评论 -
Using Expat[1]:What is expat?
What is expat?<!-- var CN_AD = new Object(); CN_AD.AD_SZ = "300wx250h"; CN_AD.PTYPE = "publisher"; cnetGetAd(CN_AD);//--> Expat is a library, writ转载 2008-09-26 12:56:00 · 624 阅读 · 0 评论 -
Using Expat[2]:Overview of Expat
Overview of ExpatExpat is a stream-oriented parser. You register callback (or handler) functions with the parser and then start feeding it the document. As the parser recognizes parts of the doc转载 2008-09-26 12:57:00 · 692 阅读 · 0 评论 -
expat函数指南
expat函数指南发信站: BBS 水木清华站 (Fri Jun 8 09:58:16 2001)解析器创建XML_ParserCreateXML_Parser XML_ParserCreate(const XML_Char*encoding)建立新解析器。如果编码非零,它指示特性给文件的用途编码。这重载编码文件的声明。有4种内置的编码:US-ASCII UTF-8 UTF-16 ISO-8转载 2008-09-26 12:54:00 · 2943 阅读 · 2 评论 -
Using Expat[3]:Expat Function Reference
Expat Function ReferenceExpat Functions XML_ErrorStringXML_ExternalEntityParserCreateXML_GetBaseXML_GetBufferXML_GetCurrentByteIndexXML_GetCurrentColumnNumberXML_GetCurrent转载 2008-09-26 13:00:00 · 806 阅读 · 0 评论