Xerces-C:从 v2.x 迁移到 v3.x?
我想将一个项目(我不太熟悉的遗留代码)从 Xerces-C v2.x 迁移到 v3.x。
事实证明,Xerces-C v3 删除了 DOMBuilder 类。 迁移存档告诉我这一点:
...作为最终 DOM Level 3 规范一致性工作的一部分,许多 DOM 接口(DOMBuilder、DOMWriter、DOMInputSource 等)被替换。
那很好。但是有关于如何将依赖这些类的代码迁移到新 API 的指南吗?
I would like to migrate a project (legacy code which I am not quite familiar with) from Xerces-C v2.x to v3.x.
It turns out that Xerces-C v3 dropped the DOMBuilder class. The migration archive tells me this:
...a number of DOM interfaces (DOMBuilder, DOMWriter, DOMInputSource, etc.) were replaced as part of the the final DOM Level 3 specification conformance work.
That's nice. But is there any guide on how to migrate code that relies on these classes to the new API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已删除 API 的替换:
使用
XercesDOMParser
或DOMLSParser
代替DOMBuilder
(更多信息):<块引用>
xercesDOMParser->setCreateCommentNodes(true);
使用
DOMLSSerializer
而不是DOMWriter
:<块引用>
DOMLSSerializer* writer = ((DOMImplementationLS*)impl)->createLSSerializer();
DOMConfiguration* dc = writer->getDomConfig();
dc->setParameter(XMLUni::fgDOMErrorHandler,errorHandler);
dc->setParameter(XMLUni::fgDOMWRTDiscardDefaultContent,true);
使用
DOMLSInput
而不是DOMInputSource
。另请参阅:
Replacements for removed APIs:
Use
XercesDOMParser
orDOMLSParser
instead ofDOMBuilder
(more info):Use
DOMLSSerializer
instead ofDOMWriter
:Use
DOMLSInput
instead ofDOMInputSource
.See also: