How to parse a json array with an array of arrays

邮差的信 提交于 2019-12-12 05:38:40

问题


I think I am missing something here on the parsing of this json object. The output I receive is in this format:

   {
  "columns" : [ "type", "relation" ],
  "data" : [ [ "SOURCE", {
    "paged_traverse" : "localhost/db/data/node/26/paged/traverse/{returnType}{?pageSize,leaseTime}",
    "outgoing_relationships" : "localhost/db/data/node/26/relationships/out",
    "data" : {
      "DATUM" : "December"
    },
    "all_typed_relationships" : "localhost/db/data/node/26/relationships/all/{-list|&|types}",
    "traverse" : "localhost/db/data/node/26/traverse/{returnType}",
    "self" : "localhost/db/data/node/26",
    "all_relationships" : "localhost/db/data/node/26/relationships/all",
    "property" : "localhost/db/data/node/26/properties/{key}",
    "outgoing_typed_relationships" : "localhost/db/data/node/26/relationships/out/{-list|&|types}",
    "properties" : "localhost/db/data/node/26/properties",
    "incoming_relationships" : "localhost/db/data/node/26/relationships/in",
    "incoming_typed_relationships" : "localhost/db/data/node/26/relationships/in/{-list|&|types}",
    "extensions" : {
    },
    "create_relationship" : "localhost/db/data/node/26/relationships"
  } ]]
}

I have managed to parse the inner-most part correctly within GSON:

public class Data
{
    private String paged;
    private String out;
    private Map<String, String> data;  
        ...
}

But when I supply the full body I get the following exception:

Exception in thread "main" com.google.gson.JsonParseException: The JsonDeserializer MapTypeAdapter failed to deserialize json object
  {
      "columns" : [ "type", "relation" ],
      "data" : [ [ "SOURCE", {
        "paged" : foo/{returnType}{?pageSize,leaseTime}",
        "out" : "bar",
        "data" : {
          "DATUM" : "December"
          }
        } ], 
        [ "SOURCE", {
        "paged" : "test/{returnType}{?pageSize,leaseTime}",
        "out" : "baz",
        "data" : {
          "DATUM" : "Steve"
           }
         } 
        ]
      ] 
    }  given the type java.util.Map<java.lang.String, java.lang.String>  

at com.google.gson.JsonDeserializerExceptionWrapper.deserialize(JsonDeserializerExceptionWrapper.java:64) at com.google.gson.JsonDeserializationVisitor.invokeCustomDeserializer(JsonDeserializationVisitor.java:92) at com.google.gson.JsonObjectDeserializationVisitor.visitFieldUsingCustomHandler(JsonObjectDeserializationVisitor.java:117) at com.google.gson.ReflectingFieldNavigator.visitFieldsReflectively(ReflectingFieldNavigator.java:63) at com.google.gson.ObjectNavigator.accept(ObjectNavigator.java:120) at com.google.gson.JsonDeserializationContextDefault.fromJsonObject(JsonDeserializationContextDefault.java:76) at com.google.gson.JsonDeserializationContextDefault.deserialize(JsonDeserializationContextDefault.java:54) at com.google.gson.Gson.fromJson(Gson.java:551) at com.google.gson.Gson.fromJson(Gson.java:498) at com.google.gson.Gson.fromJson(Gson.java:467) at com.google.gson.Gson.fromJson(Gson.java:417) at com.google.gson.Gson.fromJson(Gson.java:389) at com.skyscraper.transformer.NodeTransformer.fromGson(NodeTransformer.java:24) at com.skyscraper.query.read.Retriever.queryNode(Retriever.java:128) at com.skyscraper.query.read.Retriever.main(Retriever.java:67) Caused by: java.lang.IllegalStateException: This is not a JSON Object. at com.google.gson.JsonElement.getAsJsonObject(JsonElement.java:83) at com.google.gson.MapTypeAdapter.deserialize(MapTypeAdapter.java:66) at com.google.gson.MapTypeAdapter.deserialize(MapTypeAdapter.java:33) at com.google.gson.JsonDeserializerExceptionWrapper.deserialize(JsonDeserializerExceptionWrapper.java:51) ... 14 more

So again the question is how do I properly parse this json output. It is from a neo4j rest call if that is of any value.

Current implementation:

   import java.util.ArrayList;
import java.util.List;

public class Wrapper {

    private String[] columns = new String[] { "type", "relation" };
    private List<List<Object>> f = new ArrayList<List<Object>>();

    public String[] getColumns() {
        return columns;
    }

    public void setColumns(String[] columns) {
        this.columns = columns;
    }

    public List<List<Object>> getF() {
        return f;
    }

    public void setF(List<List<Object>> f) {
        this.f = f;
    }
}


public class NodeTransformer {

    public static void main(String[] a) {

        Gson gson = new Gson();
        Wrapper w = new Wrapper();
        List<List<Object>> blah = w.getF();
        List<Object> objects = new ArrayList<Object>();
        objects.add(new DataNode());
        objects.add(new DataNode());

        blah.add(objects);
        w.setF(blah);
        System.out.println(gson.toJson(w));
    }

yields:

{
    "columns":["type","relation"],
    "f": [ [ 
        {"paged_traverse":"localhost/db/data/node/25/paged/traverse/{returnType}{?pageSize,leaseTime}",
        "outgoing_relationships":"localhost/db/data/node/25/relationships/out",
        "data":{},
        "all_typed_relationships":"localhost/db/data/node/25/relationships/all/{-list|\u0026|types}",
        "traverse":"localhost/db/data/node/25/traverse/{returnType}",
        "self":"localhost/db/data/node/25",
        "all_relationships":"localhost/db/data/node/25/relationships/all",
        "property":"localhost/db/data/node/25/properties/{key}",
        "outgoing_typed_relationships":"localhost/db/data/node/25/relationships/out/{-list|\u0026|types}",
        "properties":"localhost/db/data/node/25/properties",
        "incoming_relationships":"localhost/db/data/node/25/relationships/in",
        "incoming_typed_relationships":"localhost/db/data/node/25/relationships/in/{-list|\u0026|types}",
        "extensions":{},
        "create_relationship":"localhost/db/data/node/25/relationships"}}
        ]
    ]
}

回答1:


Try using this:

private List<List<Object>> f = new ArrayList<List<Object>>();

And then f.get(0).get(0) will give you a String of "type", and f.get(0).get(1) will give you a JsonObject

http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/JsonObject.html

Alternatively, return what you need out of the relationship data in separate columns, rather than the whole relationship map.

Update: Maybe you should just be using springdata-neo4j. :)



来源:https://stackoverflow.com/questions/15721149/how-to-parse-a-json-array-with-an-array-of-arrays

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!