Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>as per your request posting </p> <pre><code> public class JSONParser { static InputStream is = null; static JSONArray jObj = null; static String json = ""; // constructor public JSONParser() { } public JSONArray getJSONFromUrl(String url,String a) { ArrayList&lt;NameValuePair&gt; postParameters = new ArrayList&lt;NameValuePair&gt;(); postParameters.add(new BasicNameValuePair("branchname", a)); try { // defaultHttpClient DefaultHttpClient httpClient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); httppost.setEntity(new UrlEncodedFormEntity(postParameters)); 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 JSONArray(json); } catch (JSONException e) { Log.e("JSON Parser", "Error parsing data " + e.toString()); } return jObj; }} </code></pre> <p>and in the parsing class</p> <pre><code> public class ListAtmActivity extends ListActivity{ private static String url ="http://10.0.2.2:8080/hello/AvailabilityResponse"; //TextView error; //String brName; //Bundle b = getIntent().getExtras(); //String brName = b.getString("key"); private static final String TAG_CONTACTS = "contacts"; private static final String TAG_ID = "id"; private static final String ATM_NO = "atmbrno"; static final String ATM_PLACE = "atmbrname"; // contacts JSONArray //JSONArray contacts = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.list_item); String brName=getIntent().getExtras().getString("key"); /*Bundle b = getIntent().getExtras(); brName = b.getString("key"); */ // Hashmap for ListView ArrayList&lt;HashMap&lt;String, String&gt;&gt; contactList = new ArrayList&lt;HashMap&lt;String, String&gt;&gt;(); // Creating JSON Parser instance JSONParser jParser = new JSONParser(); // getting JSON string from URL JSONArray contacts = jParser.getJSONFromUrl(url,brName); try{ //String results; for(int i = 0; i &lt; contacts.length(); i++){ JSONObject json_data = contacts.getJSONObject(i); // Storing each json item in variable String atm_id = json_data.getString(ATM_NO); String atm_name = json_data.getString(ATM_PLACE); HashMap&lt;String, String&gt; map = new HashMap&lt;String, String&gt;(); map.put(ATM_NO, atm_id); map.put(ATM_PLACE, atm_name); contactList.add(map); } } catch(JSONException e) { e.printStackTrace(); } /** * Updating parsed JSON data into ListView * */ ListAdapter adapter = new SimpleAdapter(this, contactList, R.layout.list_main, new String[] { ATM_NO, ATM_PLACE }, new int[] { R.id.name , R.id.email }); setListAdapter(adapter); }} </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload