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.
是否有任何 .jar 可用于将 JSON 转换为 XML?SO上的很多答案都包含死链接或涉及复杂的配置。
理想情况下,最好在我现有的项目中包含一个 jar,该项目当前将 XML 转换为 JSON。我只需要反过来完成。
看看这篇文章:
来自文章:
使用 json-lib,一个为任何 Java 程序添加 JSON 支持的库。json-lib 提供了一个 XMLSerializer,可用于从 JSON 对象输出 XML。
我建议将 JSON 转换为 java 类(例如使用 GSON),然后将 java 类转换为 XML(可能使用 JAXB)。然后,您将有一个全面的方法来管理您希望如何执行转换。