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 7664141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T14:13:47+00:00 2026-05-31T14:13:47+00:00

I am trying to create a JSONMessage class that can parse a json string

  • 0

I am trying to create a JSONMessage class that can parse a json string and add the objects contained in the message to the List<T> t.

The object contained in the message implements the interface JSONSerialisation and implements the two methods toJSON() and fromJSON().

The code below does not work because I cannot instantiate the Type T and I get an error on the row t2.fromJSON... (as t2 has not been initialized).

I am not sure if my approach here is correct and if what I try to is achievable (create a generic JSONMessage) that I can use to encode/parse different type of objects. If that approach is not possible, I would appreciate hints of how I could achieve a similar result.

Regards

Interface

public interface JSONSerialisation {
    public JSONObject toJSON();
    public void fromJSON(JSONObject jsonObject);
}

Class

public class JSONMessage<T extends JSONSerialisation> {

    private List<T> t;

    public JSONMessage(String json) {
        parseJSONMessage(json);
    }

    public void parseJSONMessage(String json) {
        try {
            this.t = new ArrayList<T>();
            JSONObject jsonObject;
            JSONArray lineItems;
            jsonObject = new JSONObject(json);
            this.messageHeader = new MessageHeader(jsonObject.getJSONObject("Header"));

            lineItems = jsonObject.getJSONArray("Data");
            int size = lineItems.length();

            for (int i = 0; i < size; i++) {
                T t2;
                t2.fromJSON(lineItems.getJSONObject(i));
                t.add(t2);
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }
    }

}
  • 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-31T14:13:48+00:00Added an answer on May 31, 2026 at 2:13 pm

    Looks like you are trying to replace the functionality available from most JSON deserialization libraries. You will notice that most of them require a parametized class, as a solution to the very problem you are facing. It’s not the most elegant solution, but it will work. I would drop the generic parameter from the deserialization class, and the stateful variables as well:

    public class JSONMessage {
        public static <T extends JSONSerialisation> Collection<T> parseJSONMessage(Class<T> clazz, String json) {
            try {
                final JSONObject jsonObject = new JSONObject(json);
                final JSONArray lineItems = jsonObject.getJSONArray("Data");
    
                Collection<T> results = new ArrayList<T>(lineItems.size());
    
                for (final JSONElement elem: lineItems) {
                    T result = clazz.newInstance();
                    result.fromJSON(elem);
                    results.add(result);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    
        public JSONMessage() {
            super();
        }
    }
    

    The code is obviously missing some error handling, and I made up a bogus JSONElement type in the enhanced for loop, but you get the general idea. Good luck.

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

Sidebar

Related Questions

Trying to create a list to return some JSON data to a view. Following
I'm trying create a ASMX webservice that can perform a HTTP GET request. I
I am trying create a WCF service that leverages the WPF MediaPlayer on the
I'm trying create a bot which automatically likes Facebook posts. Using Mechanize I can
Trying to create a user account in a test. But getting a Object reference
Trying to create my first iPhone app that would play back audio. When I
Trying to create a small monitor application that displays current internet usage as percentage
I'm trying create a RCP Application with Eclipse, but I can't get past the
I'm trying create a box in my Django app that displays text (and possibly
I trying create a class derivated from System.Web.UI.Page and in override Render i set

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.