如何在Android中将Json字符串转换为ListView


How to convert Json string to ListView in Android

希望有人能帮助我理解这一点,我完全迷失了方向,似乎根本无法理解。

我有一个从数据库中提取信息的应用程序,此时,Android连接到一个PHP页面,结果打印在应用程序上,如:

{"offer":"Half Price Drinks", "Day":"Monday"}

{"offer":"Half Price Drinks", "Day":"Tuesday"}

我需要将其转换为列表视图,有人能建议我如何做到这一点吗?

我已经放入了连接到php页面的页面,并将这些信息拉入。

public class BarsActivity extends Activity {
     TextView txt;
     @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.  
         LinearLayout rootLayout = new LinearLayout(getApplicationContext());  
         txt = new TextView(getApplicationContext());  
         rootLayout.addView(txt);  
         setContentView(rootLayout);  
         // Set the text and call the connect function.  
         txt.setText("Connecting..."); 
       //call the method to run the data retreival
         txt.setText(getServerData(KEY_121)); 

     }
     public static final String KEY_121 = "http://10.0.2.2/SocialCrawler/content.php"; //i use my real ip 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("day","Monday"));
         //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(int i=0;i<jArray.length();i++){
                         JSONObject json_data = jArray.getJSONObject(i);
                         Log.i("log_tag","day: "+json_data.getString("day")+
                                 ", offer: "+json_data.getString("offer")
                         );
                         //Get an output to the screen
                         returnString += "'n't" + jArray.getJSONObject(i); 
                 }
         }catch(JSONException e){
                 Log.e("log_tag", "Error parsing data "+e.toString());
         }
         return returnString; 
    }
}

通过迭代所有key->值将json转换为ArrayList,并使用ArrayAdapter