将JSON数据转换为Java对象


262

我希望能够从Java操作方法中的JSON字符串访问属性。只需说一下即可使用该字符串myJsonString = object.getJson()。以下是该字符串的示例:

{
    'title': 'ComputingandInformationsystems',
    'id': 1,
    'children': 'true',
    'groups': [{
        'title': 'LeveloneCIS',
        'id': 2,
        'children': 'true',
        'groups': [{
            'title': 'IntroToComputingandInternet',
            'id': 3,
            'children': 'false',
            'groups': []
        }]
    }]
}

在此字符串中,每个JSON对象都包含其他JSON对象的数组。目的是提取ID列表,其中任何给定对象都具有包含其他JSON对象的group属性。我将Google的Gson视为潜在的JSON插件。谁能提供某种形式的指导,说明如何从此JSON字符串生成Java?



Answers:


329

我将Google的Gson视为潜在的JSON插件。谁能提供某种形式的指导,说明如何从此JSON字符串生成Java?

Google Gson支持泛型和嵌套bean。[]JSON中的in表示一个数组,并且应映射到Java集合,例如List或仅映射到纯Java数组。{}JSON中的in代表一个对象,应映射到Java Map或某些JavaBean类。

您有一个带有多个属性的JSON对象,这些属性的groups属性表示同一类型的嵌套对象的数组。可以通过以下方式使用Gson进行解析:

package com.stackoverflow.q1688099;

import java.util.List;
import com.google.gson.Gson;

public class Test {

    public static void main(String... args) throws Exception {
        String json = 
            "{"
                + "'title': 'Computing and Information systems',"
                + "'id' : 1,"
                + "'children' : 'true',"
                + "'groups' : [{"
                    + "'title' : 'Level one CIS',"
                    + "'id' : 2,"
                    + "'children' : 'true',"
                    + "'groups' : [{"
                        + "'title' : 'Intro To Computing and Internet',"
                        + "'id' : 3,"
                        + "'children': 'false',"
                        + "'groups':[]"
                    + "}]" 
                + "}]"
            + "}";

        // Now do the magic.
        Data data = new Gson().fromJson(json, Data.class);

        // Show it.
        System.out.println(data);
    }

}

class Data {
    private String title;
    private Long id;
    private Boolean children;
    private List<Data> groups;

    public String getTitle() { return title; }
    public Long getId() { return id; }
    public Boolean getChildren() { return children; }
    public List<Data> getGroups() { return groups; }

    public void setTitle(String title) { this.title = title; }
    public void setId(Long id) { this.id = id; }
    public void setChildren(Boolean children) { this.children = children; }
    public void setGroups(List<Data> groups) { this.groups = groups; }
    
    public String toString() {
        return String.format("title:%s,id:%d,children:%s,groups:%s", title, id, children, groups);
    }
}

很简单,不是吗?只要有一个合适的JavaBean并调用即可Gson#fromJson()

也可以看看:


4
表演者?你真的测量了吗?尽管GSON具有合理的功能集,但我认为性能有点薄弱(根据[ cowtowncoder.com/blog/archives/2009/09/entry_326.html])例如:我认为GSON确实不需要二传手,并且基于字段。因此代码可以稍微简化。
StaxMan

3
我在Android应用中使用它。它不是最快的解决方案,但是它很容易编程,以证明迄今为止用户缺乏性能。也许在该应用程序的更高版本中,将其删除以提供更快的解决方案。
Janusz 2010年

1
速度,如果足够快,那就足够快了。我只是在提到预期的良好性能时发表评论。功能集明智的Jackson可以处理所有相同的嵌套,分层和泛型,因此这不是速度差的来源。拥有吸气剂和设置器不会以任何可衡量的方式(对于我所知道的软件包)影响性能,因此绝对可以在其中使用它们。
StaxMan 2010年

97
为“包com.stackoverflow.q1688099;” + 1。由于某种原因,它使我发笑。
GargantuChet 2012年

1
public String toString(){返回新的Gson()。toJson(this); //用它代替编写每个变量}
Prakash

45

格森的Bewaaaaare!这是一项很棒,很了不起,但是你想要做的不是简单的对象以外的任何第二,你可以很容易地需要开始建立自己的串行器(这是不是硬)。

另外,如果您有一个对象数组,并且将一些json反序列化为该对象数组,则真正的类型是LOST!完整的对象甚至都不会被复制!使用XStream。如果使用jsondriver并设置正确的设置,它将把丑陋的类型编码为实际的json,这样您就不会丢失任何内容。真正的序列化需要支付一小笔费用(丑陋的json)。

请注意,杰克逊解决了这些问题,并且比GSON


2
我写了一部Gson的分叉,它修复了这些问题(并避免了Jackson的所有注释):github.com/winterstein/flexi-gson
Daniel Winterstein,

26

奇怪的是,到目前为止提到的唯一不错的JSON处理器就是GSON。

这里有更多不错的选择:

  • 杰克逊Github)-强大的数据绑定(与POJO之间的JSON),流式传输(超快速),树模型(方便进行无类型访问)
  • Flex-JSON-高度可配置的序列化

编辑(2013年8月):

还有一个要考虑的问题:

  • Genson-与Jackson相似的功能,旨在使开发人员更易于配置

15

或与杰克逊:

String json = "...
ObjectMapper m = new ObjectMapper();
Set<Product> products = m.readValue(json, new TypeReference<Set<Product>>() {});

这将导致无法从START_OBJECT令牌中反序列化java.util.HashSet实例的错误
Dipen Chawla

7

如果经过任何更改,您都已在使用http://restfb.com/的应用程序中,则可以执行以下操作:

import com.restfb.json.JsonObject;

...

JsonObject json = new JsonObject(jsonString);
json.get("title");

等等


您的解决方案更短,更容易理解,为什么它只收到3票?有什么问题吗?
杰夫

4

简单易用的Java代码即可转换JSONObjectJava Object

Employee.java

import java.util.HashMap;
import java.util.Map;

import javax.annotation.Generated;

import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"id",
"firstName",
"lastName"
})
public class Employee {

@JsonProperty("id")
private Integer id;
@JsonProperty("firstName")
private String firstName;
@JsonProperty("lastName")
private String lastName;
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();

/**
*
* @return
* The id
*/
@JsonProperty("id")
public Integer getId() {
return id;
}

/**
*
* @param id
* The id
*/
@JsonProperty("id")
public void setId(Integer id) {
this.id = id;
}

/**
*
* @return
* The firstName
*/
@JsonProperty("firstName")
public String getFirstName() {
return firstName;
}

/**
*
* @param firstName
* The firstName
*/
@JsonProperty("firstName")
public void setFirstName(String firstName) {
this.firstName = firstName;
}

/**
*
* @return
* The lastName
*/
@JsonProperty("lastName")
public String getLastName() {
return lastName;
}

/**
*
* @param lastName
* The lastName
*/
@JsonProperty("lastName")
public void setLastName(String lastName) {
this.lastName = lastName;
}

@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}

@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}

}

LoadFromJSON.java

import org.codehaus.jettison.json.JSONObject;

import com.fasterxml.jackson.databind.ObjectMapper;

public class LoadFromJSON {

    public static void main(String args[]) throws Exception {
        JSONObject json = new JSONObject();
        json.put("id", 2);
        json.put("firstName", "hello");
        json.put("lastName", "world");

        byte[] jsonData = json.toString().getBytes();

        ObjectMapper mapper = new ObjectMapper();
        Employee employee = mapper.readValue(jsonData, Employee.class);

        System.out.print(employee.getLastName());

    }
}

如何在JSP中访问这些json属性?
Zoran777 '16

如果您不想在JSP页面中使用它,则代码仍然相同。Employee.java类将保持不变。但是,LoadFromJSON.java中编写的代码将通过正确导入每个类而复制到jsp页面中。休息没有任何改变。
Rahul Raina

4
HashMap keyArrayList = new HashMap();
Iterator itr = yourJson.keys();
while (itr.hasNext())
{
    String key = (String) itr.next();
    keyArrayList.put(key, yourJson.get(key).toString());
}

3

如果您同时使用具有特殊键或值的特殊映射,那么Google的实现将不会考虑使用特殊映射。


2

标准的东西怎么了?

JSONObject jsonObject = new JSONObject(someJsonString);
JSONArray jsonArray = jsonObject.getJSONArray("someJsonArray");
String value = jsonArray.optJSONObject(i).getString("someJsonValue");

它非常慢:github.com/fabienrenaud/java-json-benchmark最近在工作,我通过切换所有org.json ser / deserialization调用使产品服务器的性能提高了一倍(cpu使用减少了一半,延迟减少了)使用杰克逊。
fabien '16

0

试试看:

https://github.com/RichardHightower/boon

它是邪恶的:

https://github.com/RichardHightower/json-parsers-benchmark

不要相信我的话...查看性能指标基准。

https://github.com/gatling/json-parsers-benchmark

(在某些情况下,高达100倍于4倍,并且在100多个测试中。它的索引覆盖模式甚至更快。它虽然很年轻,但已经有一些用户。)

它可以比其他任何库解析JSON DOM更快地解析JSON到Maps and Lists,并且没有索引覆盖模式。使用Boon Index Overlay模式,它甚至更快。

它还具有非常快速的JSON lax模式和PLIST解析器模式。:)(并且具有超低内存,直接从字节模式直接​​使用UTF-8编码)。

它还具有最快的JSON到JavaBean模式。

它是新的,但是如果您正在寻找快速简单的API,那么我认为没有更快或更简单的API。


您可以提供最新版本文档的链接吗?截止到今天,我找到了0.4,但无法轻松找到该版本的匹配文档链接或教程。谢谢
Bizmarck 2014年

这是一个教程github.com/RichardHightower/boon/wiki/Boon-JSON-in-五分钟 Boon在公共Maven 仓库中。它在0.27左右。
RickHigh 2014年

richardhightower.github.io/site/releases具有0.4,所以我认为这是最新的。我一直在为工作中的项目检查Boon,它是否具有与Jackson的@JsonIgnore等效的注释?
Bizmarck 2014年

boon处于ser / deserialization性能的下端:github.com/fabienrenaud/java-json-benchmark选择jackson或dsljson以提高性能。@RickHigh:我无法在您的github上发布问题,如果有任何错误/我错过了,我非常愿意改善基准或更正其解释。
fabien '16

0

根据输入的JSON格式(字符串/文件)创建一个jSONString。可以通过以下方式获取与JSON相对应的示例Message类对象:

消息msgFromJSON = new ObjectMapper()。readValue(jSONString,Message.class);


0

最简单的方法是,您可以使用此softconvertvalue方法,这是一个自定义方法,您可以在其中将jsonData转换为特定的Dto类。

Dto response = softConvertValue(jsonData, Dto.class);


public static <T> T softConvertValue(Object fromValue, Class<T> toValueType) 
{
    ObjectMapper objMapper = new ObjectMapper();
    return objMapper
        .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
        .convertValue(fromValue, toValueType);
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.