我们如何使用XStream或任何其他解析器以下面的格式获取json?

时间:2013-05-02 05:18:07

标签: java json xstream

在下面的格式中,我怀疑是每个领域提到的类型。你能建议一些解决方案吗?这是第三方要求消费的要求。

受试者“:{ “类型”:“串”, “$”:“柜型号?” }

2 个答案:

答案 0 :(得分: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?"
   }
}

了解更多信息

答案 1 :(得分:0)

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