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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:14:20+00:00 2026-06-12T20:14:20+00:00

I am using an example from http://www.androidhive.info/2012/01/android-json-parsing-tutorial/ When I run the application, it says

  • 0

I am using an example from http://www.androidhive.info/2012/01/android-json-parsing-tutorial/

When I run the application, it says that I have a java.lang.nullexception error!
I did not modify any contents from the application.

This is parsing activity:

public class AndroidJSONParsingActivity extends ListActivity {

// url to make request
private static String url = "http://api.androidhive.info/contacts/";

// JSON Node names
private static final String TAG_CONTACT = "contacts";
private static final String TAG_ID = "id";
private static final String TAG_NAME = "name";
private static final String TAG_EMAIL = "email";
private static final String TAG_ADDRESS = "address";
private static final String TAG_GENDER = "gender";
private static final String TAG_PHONE = "phone";
private static final String TAG_PHONE_MOBILE = "mobile";
private static final String TAG_PHONE_HOME = "home";
private static final String TAG_PHONE_OFFICE = "office";

// contacts JSONArray
JSONArray contacts = null;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    // Hashmap for ListView
    ArrayList<HashMap<String, String>> contactList = new ArrayList<HashMap<String, String>>();

    // Creating JSON Parser instance
    JSONParser jParser = new JSONParser();

    // getting JSON string from URL
    JSONObject json = jParser.getJSONFromUrl(url);

    try {
        // Getting Array of Contacts
        contacts = json.getJSONArray(TAG_CONTACT);

        // looping through All Contacts
        for(int i = 0; i < contacts.length(); i++){
            JSONObject c = contacts.getJSONObject(i);

            // Storing each json item in variable
            String id = c.getString(TAG_ID);
            String name = c.getString(TAG_NAME);
            String email = c.getString(TAG_EMAIL);
            String address = c.getString(TAG_ADDRESS);
            String gender = c.getString(TAG_GENDER);

            // Phone number is agin JSON Object
            JSONObject phone = c.getJSONObject(TAG_PHONE);
            String mobile = phone.getString(TAG_PHONE_MOBILE);
            String home = phone.getString(TAG_PHONE_HOME);
            String office = phone.getString(TAG_PHONE_OFFICE);

            // creating new HashMap
            HashMap<String, String> map = new HashMap<String, String>();

            // adding each child node to HashMap key => value
            map.put(TAG_ID, id);
            map.put(TAG_NAME, name);
            map.put(TAG_EMAIL, email);
            map.put(TAG_PHONE_MOBILE, mobile);

            // adding HashList to ArrayList
            contactList.add(map);
        }
    } catch (JSONException e) {
        e.printStackTrace();
    }


    /**
     * Updating parsed JSON data into ListView
     * */
    ListAdapter adapter = new SimpleAdapter(this, contactList,
            R.layout.list_item,
            new String[] { TAG_NAME, TAG_EMAIL, TAG_PHONE_MOBILE }, new int[] {
                    R.id.name, R.id.email, R.id.mobile });

    setListAdapter(adapter);

    // selecting single ListView item
    ListView lv = getListView();

    // Launching new screen on Selecting Single ListItem
    lv.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {
            // getting values from selected ListItem
            String name = ((TextView) view.findViewById(R.id.name)).getText().toString();
            String cost = ((TextView) view.findViewById(R.id.email)).getText().toString();
            String description = ((TextView) view.findViewById(R.id.mobile)).getText().toString();

            // Starting new intent
            Intent in = new Intent(getApplicationContext(), SingleMenuItemActivity.class);
            in.putExtra(TAG_NAME, name);
            in.putExtra(TAG_EMAIL, cost);
            in.putExtra(TAG_PHONE_MOBILE, description);
            startActivity(in);

        }
    });



}

}

This is my parser:

public class JSONParser {

static InputStream is = null;
static JSONObject jObj = null;
static String json = "";

// constructor
public JSONParser() {

}

public JSONObject getJSONFromUrl(String url) {

    // Making HTTP request
    try {
        // defaultHttpClient
        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);

        HttpResponse httpResponse = httpClient.execute(httpPost);
        HttpEntity httpEntity = httpResponse.getEntity();
        is = httpEntity.getContent();           

    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

    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();
        json = sb.toString();
    } catch (Exception e) {
        Log.e("Buffer Error", "Error converting result " + e.toString());
    }

    // try parse the string to a JSON object
    try {
         jObj = new JSONObject(json);
    } catch (JSONException e) {
        Log.e("JSON Parser", "Error parsing data " + e.toString());
    }
    // return JSON String
    return jObj;

}

}

This is my logcat output:

10-15 04:06:21.879: E/Buffer Error(292): Error converting result java.lang.NullPointerException

10-15 04:06:21.879: E/JSON Parser(292): Error parsing data org.json.JSONException: End of input at character 0 of 

10-15 04:06:21.889: D/AndroidRuntime(292): Shutting down VM

10-15 04:06:21.889: W/dalvikvm(292): threadid=1: thread exiting with uncaught exception (group=0x4001d800)

10-15 04:06:21.899: E/AndroidRuntime(292): FATAL EXCEPTION: main

10-15 04:06:21.899: E/AndroidRuntime(292): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.androidhive.jsonparsing/com.androidhive.jsonparsing.AndroidJSONParsingActivity}: java.lang.NullPointerException

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.app.ActivityThread.access$2300(ActivityThread.java:125)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.os.Handler.dispatchMessage(Handler.java:99)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.os.Looper.loop(Looper.java:123)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.app.ActivityThread.main(ActivityThread.java:4627)

10-15 04:06:21.899: E/AndroidRuntime(292):  at java.lang.reflect.Method.invokeNative(Native Method)

10-15 04:06:21.899: E/AndroidRuntime(292):  at java.lang.reflect.Method.invoke(Method.java:521)

10-15 04:06:21.899: E/AndroidRuntime(292):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)

10-15 04:06:21.899: E/AndroidRuntime(292):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)

10-15 04:06:21.899: E/AndroidRuntime(292):  at dalvik.system.NativeStart.main(Native Method)

10-15 04:06:21.899: E/AndroidRuntime(292): Caused by: java.lang.NullPointerException

10-15 04:06:21.899: E/AndroidRuntime(292):  at com.androidhive.jsonparsing.AndroidJSONParsingActivity.onCreate(AndroidJSONParsingActivity.java:58)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)

10-15 04:06:21.899: E/AndroidRuntime(292):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)

10-15 04:06:21.899: E/AndroidRuntime(292):  ... 11 more
  • 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-12T20:14:21+00:00Added an answer on June 12, 2026 at 8:14 pm
    Error parsing data org.json.JSONException: End of input at character 0
    

    your json is empty . Web service is not returning any data . Hence it cannot be parsed .

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

Sidebar

Related Questions

Im using building for audio player existing code from http://www.androidhive.info/2012/03/android-building-audio-player-tutorial/ . But i run
i tried the example from http://www.helloandroid.com/tutorials/using-ksoap2-android-and-parsing-output-data to get request and response from a wsdl
From this example http://www.senchafiddle.com/#dPZn0 This displays a first panel, then a second one... using
I follow example from here using section listview http://lalit3686.blogspot.com/2012/05/sectionadapter.html But how can I implement
I'm using this example to fetch links from a website : http://www.merchantos.com/makebeta/php/scraping-links-with-php/ $xpath =
Consider the following example taken from http://www.albahari.com/threading/ : using System; using System.Threading; class ThreadTest
Changed my url from http://www.website.com/b.php?n=45&t=example to this http://www.website.com/45/example by using this mod_rewrite RewriteEngine On
Using an example from http://www.tizag.com/phpT/fileupload.php . I am using PHP 5.3 at godaddy I
I just started using JSON and found this example from http://imdbapi.com/ : <script type=text/javascript>
I followed the instruction from Rick Regan http://www.exploringbinary.com/how-to-install-and-run-gmp-on-windows-using-mpir/ . Unfortunately, for some reasons, the

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.