0

私はこのJSON配列を持っています:

[{"id":"101","title":"Oferta 1"},{"id":"102","title":"Oferta 2"},{"id":"103","title":"Oferta del Mes"},{"id":"104","title":"Promoci\u00f3n Facebook"}]

この JSON を解析する必要がありますが、解析すると受信のみが行われます

{"id":"101","title":"Oferta 1"}

これは私のコードです:

try {
    JSONObject json = JSONfunctions.getJSONfromURL("URLOFJSON");
    Log.i("log_tag", json.toString()); 
    String jsonvalues =  json.getString("id");

    Log.i("log_tag", jsonvalues);  
}
catch (Exception ex)
{
    Log.e("log_tag", "Error getJSONfromURL "+ex.toString());           
}

どうすればこれを解決できますか?

全てに感謝。

4

3 に答える 3

1

問題は、jsonObject を取得し、json 配列を取得し、そこから json オブジェクトを取得することです。ダミー コード

JSonArray ja;
int resultCount = ja.length();
for (int i = 0; i < resultCount; i++)
{
    JSONObject resultObject = ja.getJSONObject(i);
    String id = resultObject.getString("id");

}
于 2012-09-20T16:54:25.997 に答える
0

I solved with this code.

URL urlws = new URL(
                "URLOFFJSON");
        URLConnection tc = urlws.openConnection();
        BufferedReader in = new BufferedReader(new InputStreamReader(
                tc.getInputStream()));
        String line;

        while ((line = in.readLine()) != null) {
            JSONArray ja = new JSONArray(line);
            for (int i = 0; i < ja.length(); i++) {
                JSONObject jo = (JSONObject) ja.get(i);
                Log.i("log_tag", jo.toString());
            }
        }

This way I can get the webservice JSONArray

Thanks for all

于 2012-09-21T11:57:41.610 に答える
0

json データからデータを取得するには、次のコード行を使用します。

String my_info = investors.getProfileAbout(user_id).toString();
            LinearLayout about =(LinearLayout) findViewById(R.id.prof_about);
            about.setVisibility(View.VISIBLE);
            try {
                JSONArray array = new JSONArray(my_info);
                for (int i = 0; i < array.length(); i++) {
                    JSONObject row = array.getJSONObject(i);
                    //id = row.getInt('id');
                    String type1 = row.getString("type");
                    String person_marks = row.getString("follwed");
                    String total_posts = row.getString("totalpost");
                    String componsated = row.getString("ipost");
                    String mods = row.getString("mods");
                    String  doj = row.getString("bday");

                    String avatar = row.getString("avatar");


                   TextView type = (TextView) findViewById(R.id.mebership);
                   type.setText(type1);

                   TextView marks = (TextView) findViewById(R.id.marks);
                   marks.setText(person_marks);

                   TextView total_pos = (TextView) findViewById(R.id.total_posts);
                   total_pos.setText(total_posts);

                   TextView componsated_posts = (TextView) findViewById(R.id.componsated_posts);
                   componsated_posts.setText(componsated);

                   TextView moderating = (TextView) findViewById(R.id.moderating);
                   moderating.setText(mods);

                   TextView user_name = (TextView) findViewById(R.id.profile_username);
                   user_name.setText(extras.getString("user_name"));

                   ImageView userProfilePic = (ImageView) findViewById(R.id.user_profile_img);
                   userProfilePic.setImageBitmap(mySession.downloadImage(avatar));

                   TextView dob = (TextView) findViewById(R.id.dob);
                    dob.setText(doj);
                }

                } catch (Exception e) {
                Log.e("Exception", "Exception when parsing response JSON."+e.getMessage());
                }

詳細については、ここをクリックしてください http://grabcodes.blogspot.com

于 2012-09-20T17:07:02.477 に答える