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

  • Home
  • SEARCH
  • 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 7737325
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:58:01+00:00 2026-06-01T07:58:01+00:00

I can fetch the menucode from database i can print inside for loop means

  • 0

I can fetch the menucode from database i can print inside for loop means it prints all menucodes. if i print loop out side means it print only last value

         my code
     JSONArray json = jArray.getJSONArray("mainmenu");

         for ( i = 0; i < json.length(); i++) {

                JSONObject e = json.getJSONObject(i);
            map.put("itemcode", e.getString("menucode"));   //here i print all values  


         }
      list.setOnItemClickListener(new OnItemClickListener() {   

        public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                long arg3) {
            System.out.println(map.get("itemcode"));//here i print only last value(here i want print all values how can i do this)
            // TODO Auto-generated method stub
            Intent intent=new Intent(getApplicationContext(),FoodMenu.class);
            startActivity(intent);
        }
    });

out side for loop also i want print all menucodes .. please help me

  • 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-01T07:58:03+00:00Added an answer on June 1, 2026 at 7:58 am

    You are using a map, and you have the same key all the time ("itemcode"), so each insertion overrides the previous insertion to the map, maybe you should just use a List, or use different keys.

    Answering the comment by giving examples:

    1. Using ArrayList / List:

      List<String> codez = new ArrayList<String>();
      for ( i = 0; i < json.length(); i++) {
          JSONObject e = json.getJSONObject(i);
          codez.add(e.getString("menucode"));
      }
      
    2. Using different keys:

      for ( i = 0; i < json.length(); i++) {
          JSONObject e = json.getJSONObject(i);
          map.put("itemcode" + i, e.getString("menucode"));
      }
      

    Last thing – you cannot have two identical keys in a map, it defeats its purpose, and it’s useless. If you are not going to get the values with by the key, and if the key is not used, you shouldn’t use a map in first place.

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

Sidebar

Related Questions

I can fetch the item names from a database and append them to an
how we can fetch the data from the database through Silver light? I want
Every time I fetch objects from the database I get all objects. Now, I
Why is foreach loop a read only? I mean you can fetch the data
I know I can fetch url from AppEngine. But I just want to ping
I have a view controller that can fetch many different types of entities from
I'm being asked if I can fetch the result from 18 different Wordpress databases
How can fetch values form database and display it in a textview in android?
I want to fetch some data from the following database table 'article'. i want
Is there any good api from where I can fetch synonym of a word(English

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.