编组和序列化
可能的重复:
序列化和编组之间有什么区别?
什么是编组在java中,编组和序列化有什么区别?
Possible Duplicate:
What is the difference between Serialization and Marshalling?
what is marshalling in java and what is the difference between marshalling and serialization?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Stackoverflow 上有很多关于此的优秀帖子,但如果您想要一个简单的答案,那就是:
它们是相同的,并且这些术语可以互换使用。在Java世界中,两者都被实际使用。
对于 JAXB (将对象转换为 XML),使用术语编组。例如,
为了将 Java 对象转换为字节,使用术语“序列化”。例如,
所以这主要是语义。
There are many excellent posts on Stackoverflow on this, but if you want a simple answer here it is:
They're the same, and the terms are used interchangeably. In the Java world, both are actually used.
For JAXB (converting objects to XML), the term marshalling is used. e.g.,
For converting Java objects to bytes, the term serializing is used. e.g.,
So it's mostly semantics.