DOM 与 Castor
谁能告诉我哪一个更好地用于 xml 解析 - DOM 或 Castor(标准是内存使用量较少)?
Can anyone tell me which one better to use for xml parsing - DOM or Castor (with criterion being lesser memory usage)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两者都会在内存中创建一个包含所有未编组对象的对象图。我不认为其中一个在内存使用方面比另一个有很大的优势。
Both will create an object graph in memory containing all the unmarshalled objects. I wouldn't expect a big advantage from one over the other in terms of memory use.