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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:01:46+00:00 2026-06-10T10:01:46+00:00

Can anyone please help me to convert this JSON to Java Object. I usually

  • 0

Can anyone please help me to convert this JSON to Java Object. I usually use GSON, but it seem this time it is not working for me. The problem is that I want to create an Object that contains

Class JsonGotText{
String status; 
List<Object> result;
}

But all the Object in List is all difference properties… So I don know how to do to let Gson Map it correctly

{
  "status": 0,
  "result": {
    "1346053628": {
      "type": "default",
      "decorated_time": 1346053628,
      "guidOwner": 13716,
      "friendGuid": 3264,
      "action_type": "friend",
      "summary": " is now a friend with ",
      "annotation": null,
      "group": ""
    },
    "1346051675": {
      "type": "event",
      "decorated_time": 1346051675,
      "guidOwner": 90,
      "title": null,
      "action_type": "event_relationship",
      "summary": "river:event_relationship:object:event",
      "annotation": null,
      "group": ""
    },
    "1346048488": {
      "type": "event",
      "decorated_time": 1346048488,
      "guidOwner": 90,
      "title": null,
      "action_type": "event_relationship",
      "summary": "river:event_relationship:object:event",
      "annotation": null,
      "group": ""
    }
  }
}
  • 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-06-10T10:01:47+00:00Added an answer on June 10, 2026 at 10:01 am

    Try using

    Class JsonGotText{
    String status; 
    HashMap<String, Object> result;
    }
    

    If performance is not key criteria here. You better use ‘JSONObject’ without worrying the structure of JSON String.


    Ideally, you should write a POJO. Say EventPOJO that has attributes same as as each result object holds and then make the Java class as

    Class JsonGotText{
      String status; 
      HashMap<String, EventPOJO> result;
    }
    

    you may have to use a type token see here, but will save your efforts later.

    Update
    It seems the sentence above sounds confusing. Here is clarification what I wanted EventPOJO to represent to. The EventPOJO will represents things like

    {
          "type": "event",
          "decorated_time": 1346048488,
          "guidOwner": 90,
          "title": null,
          "action_type": "event_relationship",
          "summary": "river:event_relationship:object:event",
          "annotation": null,
          "group": ""
        }
    

    Update1 @LalitPoptani asked for exact working code. Here it is!

    Here is an working example:

    public class Test {
    
        private static String json = 
                "{"+
                          "\"status\": 0,"+
                          "\"result\": {"+
                            "\"1346053628\": {"+
                              "\"type\": \"default\","+
                              "\"decorated_time\": 1346053628,"+
                              "\"guidOwner\": 13716"+
                            "},"+
                            "\"1346051675\": {"+
                              "\"type\": \"event\","+
                              "\"decorated_time\": 1346051675,"+
                              "\"guidOwner\": 90"+
                            "},"+
                            "\"1346048488\": {"+
                              "\"type\": \"event\","+
                              "\"decorated_time\": 1346048488,"+
                              "\"guidOwner\": 90"+
                            "}"+
                          "}" +
                 "}";
    
        public static class Event{
            String type;
            Long decorated_time;
            Integer guidOwner;
        }
    
        public static class JSON{
            Integer status;
            HashMap<Long, Event> result;
        }
    
        public static void main(String[] args){
            Gson gson = new Gson();
            System.out.println("JSON: " + json);
            JSON j = gson.fromJson(json, JSON.class);
            for(Entry<Long, Event> e: j.result.entrySet()){
                System.out.println(e.getKey() + ": " + e.getValue().guidOwner);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone help me convert this code into Oracle SQL? Or please give me
Can anyone please help me how to convert string to date I have 3
Can anyone please help me with this...I'm not very good with regular expressions and
Can anyone please help me to understand how should i access json data in
Can anyone please tell me how can I convert this float number: 12.25 to
Can anyone please help me to know how to open an excel sheet in
Can anyone please help me to work out how to achieve the following? I
Can anyone please help me to add video controls (play, pause, forward, seekbar) to
Can anyone please help. I'm following a tutorial found here as I have a
I'm a new bie with MVC3 razor. Can anyone please help me why I

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.