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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:13:57+00:00 2026-05-26T03:13:57+00:00

I write a java program that has a json parser to get some data.

  • 0

I write a java program that has a json parser to get some data. My problem is the comparison of values from the json parser. This is my code:

private ArrayList<HashMap<String, String>> listInfo = new ArrayList<HashMap<String, String>>();

public ArrayList<HashMap<String, String>> info() {
    //Get the data
    JSONObject json = JSONfunctions.getJSONfromURL(URL);
    try {
        //Get the elements
        HashMap<Integer, String> mapValueForCompare = new HashMap<Integer, String>();
        JSONArray data = json.getJSONArray("data");
        //Loop the array
        for (int i = 0; i < data.length(); i++) {
            HashMap<String, String> mapInfo = new HashMap<String, String>();
            JSONObject e = data.getJSONObject(i);
            mapInfo.put("id", e.getString("id"));
            mapInfo.put("title", e.getString("title"));
            mapInfo.put("value", e.getString("value"));
            int t = check(mapValueForCompare, mapInfo);
            if (t == 1) {
                mapInfo.put("isSame?", "yes");
            } else {
                mapInfo.put("isSame?", "no");
            }
            mapValueForCompare.put(i, e.getString("value"));
            listInfo.add(mapInfo);
        }
    } catch (JSONException e) {
        Log.e("log_tag", "Error parsing data " + e.toString());
    }
    return listInfo;
}

private int check(HashMap<Integer, String> mapValueForCompare, HashMap<String, String> mapInfo) {
    int result = -1;
    for (int i = 0; i < mapValueForCompare.size() - 1; i++) {
        if (mapValueForCompare.get(i) == mapInfo.get("value")) {
            result = 1;
        } else {
            result = 0;
        }
    }
    return result;
}

You see that i use a HashMap(mapValueForCompare) to collect all values and compare each value with the value of the new HashMap(mapInfo). The result is only the answer “no”! Why this? Where is my wrong? Do you have a better idea? I can’t find anything else.

  • 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-26T03:13:58+00:00Added an answer on May 26, 2026 at 3:13 am

    Change in your check method:

    if (mapInfoTest.get(i) == mapInfo.get("value"))

    to
    if (mapInfoTest.get(i).equals(mapInfo.get("value")))

    You can simplify your code using containsKey on your maps

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

Sidebar

Related Questions

I need to write a simple terminal-based program that should, Read some text from
I'm looking to write a java program that has the following requirements: An ability
I want to write a java program that acts as a user interface to
I am trying to write a Java program that reads an input file consisting
I'm trying to follow Java's JDBC tutorials to write a Java program that can
I need to write a Perl script that pipes input into a Java program.
I'm trying to write a program in Java that uses osql to generate a
Suppose I write a program using immutable data structures in Java. Even though it
For my data structure class, I am trying to write a program that simulates
I'm thinking of using Java to write a program that I might try to

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.