Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 java 对象可以序列化为文件,但是在什么情况下我们需要使用 XMLEncoder 并将对象序列化为 XML?
我开始掌握 Java EE,并且我知道我们可以使用这种方法序列化 bean,但是为什么我们需要这样做以及出于什么目的?
如果您要将某些内容传递给接受可能是您的应用程序一部分的 XML 的端点(例如 REST),您会这样做。XML 目前不像 JSON 那样流行,但仍有许多 API 使用它,包括您最终可能会从事的工作。