java - 使用 Marshaller 将 Java 对象转换为 Json

标签 java json jakarta-ee jaxb marshalling

使用 Marshaller 将 java 对象转换为 XML 非常容易。但是我需要单独使用 marshaller 将 java 对象转换为 JSON。我知道使用 gson 或 Xstream 之类的东西很好,但我需要使用 Marshaller。如何实现它?

提前致谢。

最佳答案

注意:我是 EclipseLink JAXB (MOXy) JAXB (JSR-222) 的领导和成员专家组,

如果您使用 MOXy 作为您的 JAXB 提供者,下面是如何做到这一点。

Java 模型

客户

import java.util.*;
import javax.xml.bind.annotation.*;

@XmlRootElement(namespace="http://www.example.com")
@XmlType(namespace="http://www.example.com")
@XmlAccessorType(XmlAccessType.FIELD)
public class Customer {

    @XmlAttribute
    private int id;

    @XmlElement(namespace="http://www.example.com")
    private String firstName;

    @XmlElement(namespace="http://www.example.com", nillable=true)
    private String lastName;

    @XmlElement(namespace="http://www.example.com")
    private List<PhoneNumber> phoneNumbers = new ArrayList<PhoneNumber>();

}

电话号码

import javax.xml.bind.annotation.*;

@XmlAccessorType(XmlAccessType.FIELD)
public class PhoneNumber {

    @XmlAttribute
    private String type;

    @XmlValue
    private String number;

}

jaxb.properties

要将 MOXy 指定为您的 JAXB 提供程序,您需要在与域模型相同的包中包含一个名为 jaxb.properties 的文件,其中包含以下条目(请参阅:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html)

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

演示代码

输入.xml

<?xml version="1.0" encoding="UTF-8"?>
<ns0:customer xmlns:ns0="http://www.example.com" id="123">
   <ns0:firstName>Jane</ns0:firstName>
   <ns0:lastName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
   <ns0:phoneNumbers type="work">555-1111</ns0:phoneNumbers>
</ns0:customer>

演示

在下面的演示代码中,我们将使用相同的 JAXB 元数据将 XML 文档转换为 Java 对象,然后将这些对象转换回 JSON。使用 MOXy,您可以通过在 Marshaller 上设置属性来指定 JSON 输出。

import java.io.File;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.MarshallerProperties;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Customer.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum15357366/input.xml");
        Customer customer = (Customer) unmarshaller.unmarshal(xml)
                ;
        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.setProperty(MarshallerProperties.MEDIA_TYPE, "application/json");
        marshaller.setProperty(MarshallerProperties.JSON_INCLUDE_ROOT, false);
        marshaller.marshal(customer, System.out);
    }

}

JSON 输出

下面是 JSON 输出。请注意没有与命名空间或 XML 属性对应的指示符。另请注意,大小为 1 的集合已正确表示为 JSON 数组(其他一些方法存在问题)。

{
   "id" : 123,
   "firstName" : "Jane",
   "lastName" : null,
   "phoneNumbers" : [ {
      "type" : "work",
      "value" : "555-1111"
   } ]
}

关于java - 使用 Marshaller 将 Java 对象转换为 Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15357366/

相关文章:

java - 与对象序列化期间计算的 SUID 混淆

java - 尝试打开与 http URL 的连接时出现 IOException

java - 如何防止在 java 接口(interface)中强制转换或创建子特定方法?

java - 如何重置 BufferedReader(或 InputStreamReader)以使用 readline() 两次?

json - 快速解析 json 数组的循环

java - Jackson:如果有多个序列化器,使用哪一个?

java - 抑制 "The method does not override the inherited method since it is private to a different package."

javascript - 如何使用 jq 将 JSON 格式化为嵌入的、转义的/字符串化的 JSON(对于任何/所有结构)?

java - 如何处理网络中断和连接池

java - 无法添加maven依赖