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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:22:52+00:00 2026-05-25T22:22:52+00:00

I am developing a final year project and I am stuck at a point.

  • 0

I am developing a final year project and I am stuck at a point. I have to retrieve names of doctors from my database (MySQL database) and show it in a list view. I was able to establish a connection with the server and retrieve values, but when I tried to show the values in a list view, the application crashed!

I tried the same example given in [Hello, Views, List View][4].

It works for a predefined array like

private String lv_arr[]={"Android","iPhone","BlackBerry","AndroidPeople"};

but for a string array retrieved from the database it shows a run time exception. Is there any way I can achieve this?

package com.proj;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;

import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;

import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.widget.*;
import android.app.ListActivity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.widget.LinearLayout;
import android.widget.TextView;

public class proj extends ListActivity {
    /** Called when the activity is first created. */

    public int n=0;
    public int t=0;
    public int i=0;

    public String name[]=new String[30];
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        // Create a crude view - this should really be set via the layout resources
        // but since its an example saves declaring them in the XML.
        TextView txt=(TextView)findViewById(R.id.tv);;
        //Call the method to run the data retrieval
        getServerData(KEY_121);
        setListAdapter(new ArrayAdapter(this,
                       android.R.layout.simple_list_item_1, name));
    }

    public static final String KEY_121 = "http://10.0.2.2/doc.php"; //I use my real IP address here.

    private String getServerData(String returnString) {
        InputStream is = null;

        String result = "";
        //The year data to send.
        ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
        nameValuePairs.add(new BasicNameValuePair("year","1970"));

        //HTTP post
        try{
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost(KEY_121);
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity entity = response.getEntity();
            is = entity.getContent();
        }
        catch(Exception e){
            Log.e("log_tag", "Error in http connection "+e.toString());
        }

        //Convert response to string
        try{
            BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                    sb.append(line + "\n");
            }
            is.close();
            result=sb.toString();
        }
        catch(Exception e){
            Log.e("log_tag", "Error converting result "+e.toString());
        }
        //Parse JSON data
        try {
            JSONArray jArray = new JSONArray(result);
            for(i=0;i<jArray.length();i++)
            {
                JSONObject json_data = jArray.getJSONObject(i);
                n=jArray.length();
                name[i]=json_data.getString("name");

                //Get an output to the screen
                returnString += "\n\t" + jArray.getJSONObject(i);
            }
        }
        catch(JSONException e)
        {
            Log.e("log_tag", "Error parsing data "+e.toString());
            e.printStackTrace();
        }
        return returnString;
    }
}
  • 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-25T22:22:53+00:00Added an answer on May 25, 2026 at 10:22 pm

    You are using

    1.)

    android:id="@+id/list"
    

    inside the ListView, but if your extend an activity by ListActivity you have to use

    android:id = "@android:id/list"
    

    2.)

    You return a String[] here, not String

    private String[] getServerData(String returnString) {
        .......
        JSONArray jArray = new JSONArray(result);
        name = new String[jArray.length()];
        for(i=0;i<jArray.length();i++)
        {
            JSONObject json_data = jArray.getJSONObject(i);
            name[i]=json_data.getString("name");
        }
        return name;
    }
    

    And in ArrayAdapter, do it like this:

    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, getServerData(KEY_121));
    setListAdapter(adapter);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am developing a final year project where i need to retrieve details of
I'm developing an App for a Taxi company for my final year project. I'm
Developing a project of mine I realize I have a need for some level
I've been developing a school project in XCode. The final product has to be
I have being developing a form with the wizard control. The final step is
I am developing project on net-beans and I have successfully install the ireport plugin
i am developing a web for my final project,and im new to ASP.NET and
I'm developing a little project plan and I came to a point when I
Background For my final project at university, I'm developing a vehicle license plate detection
I am developing an android application in which I have passed a string from

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.