02 2011 档案

摘要:This specification is intended to define a cross-platform, interoperable file format. Since its first publication in 1989, PKWARE has remained committed to ensuring the interoperability of the .ZIP file format through this specification. We trust that all .ZIP compatible vendors and application developers that have adopted this format will share and support this commitment. 阅读全文
posted @ 2011-02-23 09:57 MayFirst 阅读(614) 评论(0) 推荐(0)
摘要:typedef struct XML_ParserStruct *XML_Parser;struct XML_ParserStruct { /* The first member must be userData so that the XML_GetUserData macro works. */ void *m_userData; void *m_handlerArg; char *m_buffer; const XML_Memory_Handling_Suite m_mem; /* first character to be parsed */ const char *m_bufferP 阅读全文
posted @ 2011-02-17 14:14 MayFirst 阅读(372) 评论(0) 推荐(0)
摘要:这篇对 Benoit Marchal 所著的 XML by Example第二版的预览给出了对 SAX 的翔实介绍,SAX 是用于处理 XML 的基于事件的 API,它已经成为事实上的标准。本篇预览讲述了何时使用 SAX 替换 DOM,概述了常用的 SAX 接口,并在基于 Java 的应用程序中提供了带有许多代码样本的详细示例。 阅读全文
posted @ 2011-02-16 16:56 MayFirst 阅读(1712) 评论(0) 推荐(2)
摘要:介绍处理 XML 文档的另一个重要接口 SAX(Simple API for XML)。其中包括它的基本情况,它的 API,一个开发实例,实际开发中一些需注意的问题,以及它与 DOM 的对比。 阅读全文
posted @ 2011-02-16 14:55 MayFirst 阅读(1102) 评论(0) 推荐(0)