gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 07:39:07 25 4
gpt4 key购买 nike

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

主题”:{“类型”:“字符串”,"$":"机柜型号?"}

最佳答案

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

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

域模型(根)

@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;
}

}

演示

由于类型限定符将被编码,因此需要为值写入键。默认情况下,这将是。您可以使用 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?"
}
}

了解更多信息

关于java - 我们如何使用 XStream 或任何其他解析器获取以下格式的 json?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16330799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com