开发者

No-args constructor for class YYYY : does not exist. Register an InstanceCreator with Gson for this type to fix this problem"

开发者 https://www.devze.com 2023-03-19 20:21 出处:网络
I\'m having troubles with the deserialization of a Json: I get this error: \"No-args constructor for class Categoria: does not exist. Register an InstanceCreator with Gson for this type to fix this

I'm having troubles with the deserialization of a Json:

I get this error:

"No-args constructor for class Categoria: does not exist. Register an InstanceCreator with Gson for this type to fix this problem"

public class getElements  {

String [] getEl (String url) throws ClientProtocolException, IOException {

    Categoria c = null;
    Categoria[] cArray = null;
    String [] c1Array = null;
    HttpClient client = new DefaultHttpClient();
    HttpGet request = new HttpGet("http://10.0.2.2:3000/"+url);

    HttpResponse response = client.execute(request);
    HttpEntity entity = response.getEntity();
    String stringa = "{\"categorium\":{\"created_at\":\"2011-06-09T08:57:41Z\",\"c1\":\"rete stradale\",\"updated_at\":\"2011-06-09T08:57:41Z\",\"id\":1}}";

     Gson json=new Gson();
      try{
          cArray=json.fromJson(stringa, Categoria[].class);
          Log.i("ELEMENTO", ""+cArray);
      }catch(JsonParseException e){
          Log.i("error","JsonParseException");
      }

      c1Array = new String[cArray.length];
      for (int i=0; i<cArray.length; i++) {
          c1Array[i] = cArray[i].c1;
      }

    return c1Array;


 }
}

Categorium class:

public class Categoria {
    public String created_at;
    public String c1;
    public String updated_at;
    public int id;

    public Categoria() {
        this.created_at = "";
        this.c1="";
        this.updated_at = "";
        this.id = 0;
    }

}

This is the Json. I want to bring al the "c1" into a String array, to built a snippet!

[
    {
        "categorium": {
            "created_at": "2011-06-09T08:57:41Z",
            "c1": "rete stradale",
            "updated_at": "2011-06-09T08:57:41Z",
            "id": 1
        }
    },
    {
        "categorium": {
            "created_at": "2011-06-09T13:50:29Z",
            "c1": "servizi pubblici",
            "updated_at": "2011-06-09T13:50:29Z",
            "id": 2
        }
    },
    {
        "categorium": {
            "created_at": "2011-06-09T13:50:37Z",
            "c1": "illuminazione",
            "update开发者_Go百科d_at": "2011-06-09T13:50:37Z",
            "id": 3
        }
    },
    {
        "categorium": {
            "created_at": "2011-06-09T13:50:46Z",
            "c1": "inquinamento",
            "updated_at": "2011-06-09T13:50:46Z",
            "id": 4
        }
    },
    {
        "categorium": {
            "created_at": "2011-06-09T13:50:54Z",
            "c1": "vandalismo",
            "updated_at": "2011-06-09T13:50:54Z",
            "id": 5
        }
    },
    {
        "categorium": {
            "created_at": "2011-06-09T13:51:00Z",
            "c1": "abbandono",
            "updated_at": "2011-06-09T13:51:00Z",
            "id": 6
        }
    },
    {
        "categorium": {
            "created_at": "2011-06-15T08:33:17Z",
            "c1": "altro",
            "updated_at": "2011-06-15T08:33:17Z",
            "id": 8
        }
    }
]


Answer to latest version of question:

import java.util.Arrays;

import com.google.gson.Gson;

public class Foo
{
  public static void main(String[] args) throws Exception
  {
    new getElements().getEl();
  }
}

class CategoriumContainer
{
  Categorium categorium;

  @Override
  public String toString()
  {
    return String.format("{CategoriumContainer: categorium=%s}", categorium);
  }
}

class Categorium
{
  public String created_at;
  public String c1;
  public String updated_at;
  public int id;

  @Override
  public String toString()
  {
    return String.format("{%s, %s, %s, %s}", created_at, c1, updated_at, id);
  }
}

class getElements
{
  String[] getEl() throws Exception
  {
    String stringa = "[{\"categorium\":{\"created_at\":\"2011-06-09T08:57:41Z\",\"c1\":\"rete stradale\",\"updated_at\":\"2011-06-09T08:57:41Z\",\"id\":1}}, {\"categorium\":{\"created_at\":\"2011-06-09T13:50:29Z\",\"c1\":\"servizi pubblici\",\"updated_at\":\"2011-06-09T13:50:29Z\",\"id\":2}}, {\"categorium\":{\"created_at\":\"2011-06-09T13:50:37Z\",\"c1\":\"illuminazione\",\"updated_at\":\"2011-06-09T13:50:37Z\",\"id\":3}}, {\"categorium\":{\"created_at\":\"2011-06-09T13:50:46Z\",\"c1\":\"inquinamento\",\"updated_at\":\"2011-06-09T13:50:46Z\",\"id\":4}}, {\"categorium\":{\"created_at\":\"2011-06-09T13:50:54Z\",\"c1\":\"vandalismo\",\"updated_at\":\"2011-06-09T13:50:54Z\",\"id\":5}}, {\"categorium\":{\"created_at\":\"2011-06-09T13:51:00Z\",\"c1\":\"abbandono\",\"updated_at\":\"2011-06-09T13:51:00Z\",\"id\":6}}, {\"categorium\":{\"created_at\":\"2011-06-15T08:33:17Z\",\"c1\":\"altro\",\"updated_at\":\"2011-06-15T08:33:17Z\",\"id\":8}}]";

    Gson json = new Gson();
    CategoriumContainer[] results = json.fromJson(stringa, CategoriumContainer[].class);
    System.out.println(Arrays.toString(results));
    // output:
    // [{CategoriumContainer: categorium={2011-06-09T08:57:41Z, rete stradale, 2011-06-09T08:57:41Z, 1}}, {CategoriumContainer: categorium={2011-06-09T13:50:29Z, servizi pubblici, 2011-06-09T13:50:29Z, 2}}, {CategoriumContainer: categorium={2011-06-09T13:50:37Z, illuminazione, 2011-06-09T13:50:37Z, 3}}, {CategoriumContainer: categorium={2011-06-09T13:50:46Z, inquinamento, 2011-06-09T13:50:46Z, 4}}, {CategoriumContainer: categorium={2011-06-09T13:50:54Z, vandalismo, 2011-06-09T13:50:54Z, 5}}, {CategoriumContainer: categorium={2011-06-09T13:51:00Z, abbandono, 2011-06-09T13:51:00Z, 6}}, {CategoriumContainer: categorium={2011-06-15T08:33:17Z, altro, 2011-06-15T08:33:17Z, 8}}]

    String[] c1Array = new String[results.length];
    for (int i = 0; i < results.length; i++)
    {
      c1Array[i] = results[i].categorium.c1;
    }
    System.out.println(Arrays.toString(c1Array));
    // output: [rete stradale, servizi pubblici, illuminazione, inquinamento, vandalismo, abbandono, altro]

    return c1Array;
  }
}

Answer to original version of question:

That's a terrible error message from Gson for the situation. I suggest logging an issue with them.

As posted in the current version of the question, the problem is you're trying to deserialize a JSON object as an array. Easy solutions to this problem are to either change the JSON into an array, or deserialize it as an object.

Here's an example that changes the JSON to have an array, and changes other things into what I guess you're trying to achieve.

import java.util.Arrays;

import com.google.gson.Gson;

public class Foo
{
  public static void main(String[] args) throws Exception
  {
    new getElements().getEl();
  }
}

class Thing
{
  Categoria[] categorium;

  @Override
  public String toString()
  {
    return Arrays.toString(categorium);
  }
}

class Categoria
{
  public String created_at;
  public String c1;
  public String updated_at;
  public int id;

  public Categoria()
  {
    this.created_at = "";
    this.c1 = "";
    this.updated_at = "";
    this.id = 0;
  }

  @Override
  public String toString()
  {
    return String.format("{%s, %s, %s, %s}", created_at, c1, updated_at, id);
  }
}

class getElements
{
  String[] getEl() throws Exception
  {
    String stringa = "{\"categorium\":[{\"created_at\":\"2011-06-09T08:57:41Z\",\"c1\":\"rete stradale\",\"updated_at\":\"2011-06-09T08:57:41Z\",\"id\":1},{\"created_at\":\"2011-07-12T08:57:41Z\",\"c1\":\"asdf fdsa\",\"updated_at\":\"2011-07-12T08:57:41Z\",\"id\":2}]}";

    Gson json = new Gson();
    Thing thing = json.fromJson(stringa, Thing.class);
    System.out.println(thing);
    // output:
    // [{2011-06-09T08:57:41Z, rete stradale, 2011-06-09T08:57:41Z, 1}, {2011-07-12T08:57:41Z, asdf fdsa, 2011-07-12T08:57:41Z, 2}]

    Categoria[] cArray = thing.categorium;

    String[] c1Array = new String[cArray.length];
    for (int i = 0; i < cArray.length; i++)
    {
      c1Array[i] = cArray[i].c1;
    }
    System.out.println(Arrays.toString(c1Array));
    // output: [rete stradale, asdf fdsa]

    return c1Array;
  }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消