Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7633433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:52:55+00:00 2026-05-31T06:52:55+00:00

Say I have a JSON string like: {title:aaa,url:bbb,image:{url:ccc,width:100,height:200}, … My accessor: import com.google.gson.annotations.SerializedName; public

  • 0

Say I have a JSON string like:

{"title":"aaa","url":"bbb","image":{"url":"ccc","width":"100","height":"200"}, ...

My accessor:

import com.google.gson.annotations.SerializedName;

public class accessorClass {

    @SerializedName("title")
    private String title;

    @SerializedName("url")
    private String url;

    @SerializedName("image")
    private String image;

    // how do I place the sub-arrays for the image here?
    ...


    public final String get_title() {
        return this.title;
    }

    public final String get_url() {
        return this.url;
    }

    public final String get_image() {
        return this.image;
    }

    ...

}

And my main:

            Gson gson = new Gson();
            JsonParser parser = new JsonParser();
            JsonArray Jarray = parser.parse(jstring).getAsJsonArray();

            ArrayList<accessorClass > aens = new ArrayList<accessorClass >();

            for(JsonElement obj : Jarray )
            {
                accessorClass ens = gson.fromJson( obj , accessorClass .class);
                aens.add(ens);
            }

What do you think would be the best way to get those sub-arrays for the image here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T06:52:56+00:00Added an answer on May 31, 2026 at 6:52 am

    FYI if your JSON is an array: {"results:":[{"title":"aaa","url":"bbb","image":{"url":"ccc","width":"100","height":"20...},{}]}

    Then you need a wrapper class:

    class WebServiceResult {
        public List<AccessorClass> results;
    }
    

    If your JSON isn’t formatted like that, then your For loop you created will do it, (if not a little clunky, would be better if your JSON is formed like above).

    Create an Image class

    class ImageClass {
        private String url;
        private int width;
        private int height;
    
        // Getters and setters
    }
    

    Then change your AccessorClass

        @SerializedName("image")
        private ImageClass image;
    
        // Getter and setter
    

    Then GSON the incoming String

    Gson gson = new Gson();
    AccessorClass object = gson.fromJson(result, AccessorClass.class);
    

    Job done.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

lets say I have a String like this [{ name : Ronald , firstname
Let say I have json data like data = {id:1, name:abc, address: {streetName:cde, streetId:2
Let's say I have some json like this in mongo: {n:5} and a java
Let's say I have a class like this: public class Person { private String
say I have the following json object; {'fname':'john', 'lname':'Locke'} and the following text boxes
I am trying to build JSON from two fields. Say, I have a list
Let's say have something like: SELECT energy_produced, energy_consumed, timestamp1 AS timestamp FROM ( SELECT
Say I have a class named Frog, it looks like: public class Frog {
I have a json object returned from a third party api, it looks like:
I have a model like this: public PurchaseOrder { [Required] [StringLength(15)] public virtual string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.