锁定老帖子 主题:Wap Explorer 初步设计源代码
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2006-12-27
刚才在我的Q群里面讨论了下关于Wap Explorer的开发。里面的朋友建议我把开发的过程写到blog,以方便学习与讨论。现在我把我写好的代码公布出来。并说明我的设计结构。(在此说明下,对于里面的UI设计我前面写过很多文章) 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2006-12-27
刚才到baidu了下,发下了下面的东西。
新的XML解释器: Xml Pull Parser 当前XML解释器主要基于两类技术:DOM(Document Object Model) 和 SAX(Simple API for Xml ),现在又出现了一种新的XML解释器: Xml Pull Parser.它与前面两类解释器不太相同. 1)DOM是tree-based的方式,SAX是event stream方式,而XPP是streaming(incremental)的方式. 2)DOM和SAX在解释XML时,是不允许中断的;而XPP是可以在任何时候中断,并且允许重新开始. XPP在解释XML时会忽略某些部分,如:entities,comments等,它解释速度很快,可能会在J2ME平台大展拳脚. 你可以访问它的网站:[http://www.xmlpull.org/],下面的链接是一款遵循XPP API的实现:[http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html] Introduce: XmlPull API is a simple to use XML pull parsing API that was designed for simplicity and very good performance both in constrained environment such as defined by J2ME and on server side when used in J2EE application servers. XML pull parsing allows incremental (sometimes called streaming) parsing of XML where application is in control - the parsing can be interrupted at any given moment and resumed when application is ready to consume more input. 估计上面的应该比较适合我的项目 开源的jxml就是这个实现。 准备参照它来自己实践下 |
|
返回顶楼 | |
浏览 6495 次