1

在下面的格式中,我怀疑每个字段都提到的类型。你能建议一些解决方案吗?这是将要使用它的第三方的要求。

subject":{ "type":"string", "$":"机柜型号?" }

4

2 回答 2

1

注意: 我是EclipseLink JAXB (MOXy)负责人,也是JAXB (JSR-222)专家组的成员。

下面是如何使用 MOXy 的 JSON 绑定来完成此操作。

领域模型(根)

@XmlElement注释可用于指定属性的类型。将类型设置为Object将强制写出符合条件的类型。

import javax.xml.bind.annotation.*;

public class Root {

    private String subject;

    @XmlElement(type=Object.class)
    public String getSubject() {
        return subject;
    }

    public void setSubject(String subject) {
        this.subject = subject;
    }

}

演示

由于将编组一个类型限定符,因此需要为该值写入一个键。默认情况下,这将是value. 您可以使用该JSON_VALUE_WRAPPER属性将其更改为$.

import java.util.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextProperties;

public class Demo {

    public static void main(String[] args) throws Exception {
        Map<String, Object> properties = new HashMap<String, Object>(3);
        properties.put(JAXBContextProperties.MEDIA_TYPE, "application/json");
        properties.put(JAXBContextProperties.JSON_INCLUDE_ROOT, false);
        properties.put(JAXBContextProperties.JSON_VALUE_WRAPPER, "$");
        JAXBContext jc = JAXBContext.newInstance(new Class[] {Root.class}, properties);

        Root root = new Root();
        root.setSubject("Cabinet model number?");

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(root, System.out);
    }

}

输出

下面是运行演示代码的输出。

{
   "subject" : {
      "type" : "string",
      "$" : "Cabinet model number?"
   }
}

了解更多信息

于 2013-05-05T12:03:58.263 回答
0

我已经使用谷歌的 gson API 完成了这项工作。编写了一个自定义序列化程序,它检查类型和值并基于它创建 JSON 对象。

于 2013-05-10T06:50:04.213 回答