JSON Parse显示出奇怪的行为

时间:2011-10-18 16:16:28

标签: android json

HY!

我有一个Json字符串:

{"responseData":{"days":[{"date":1289430000,"lessons":[{"lesson":"3","classname":"XXXX","oldTeacher":"RUMET","newTeacher":"JAKOB","oldSubject":"0AM","newSubject":"0AM","oldRoom":"104","newRoom":"104 ","comment":""},{"lesson":"4","classname":"XXXX","oldTeacher":"RUMET","newTeacher":"JAKOB","oldSubject":"0AM","newSubject":"0APH","oldRoom":"104","newRoom":"107 ","comment":"Verlegtvon"},{"lesson":"8","classname":"XXXX","oldTeacher":"JAKOB","newTeacher":"","oldSubject":"0APH","newSubject":"","oldRoom":"107","newRoom":" ","comment":"Entfall"}]},{"date":1289516400,"lessons":[{"lesson":"1","classname":"XXXX","oldTeacher":"KAIS","newTeacher":"","oldSubject":"0RW1","newSubject":"","oldRoom":"107","newRoom":" ","comment":"Entfall"},{"lesson":"2","classname":"XXXX","oldTeacher":"KAIS","newTeacher":"TRAUN","oldSubject":"0RW1","newSubject":"0BO","oldRoom":"107","newRoom":"107 ","comment":""}]},{"date":1289948400,"lessons":[{"lesson":"5","classname":"XXXX","oldTeacher":"KIES","newTeacher":"","oldSubject":"0RK","newSubject":"","oldRoom":"107","newRoom":" ","comment":"Entfall"}]},{"date":1290121200,"lessons":[{"lesson":"6","classname":"XXXX","oldTeacher":"KIES","newTeacher":"","oldSubject":"0RK","newSubject":"","oldRoom":"107","newRoom":" ","comment":"Entfall"}]}]},"responseDetails":null,"responseStatus":200}

为了更好地理解http://json.parser.online.fr/

中的代码

并将其解析为条目对象列表(SPEntry):

public class EntryParse{

    ArrayList<SPEntry> list;
    public EntryParse(Context ctx, String par_json)
    {
        try 
        {
            list = new ArrayList<SPEntry>();
                JSONArray array  = new JSONArray(par_json);

                for (int i = 0; i < array.length(); i++) {              //Datum
                    JSONObject json = array.getJSONObject(i);

                    Date date = new Date(json.getLong("date")*1000);
                    SimpleDateFormat ft = new SimpleDateFormat ("dd.MM.yyyy");

                    JSONArray lessons = json.getJSONArray("lessons");

                    for (int j = 0; j < lessons.length(); j++) {        //Stunden

                        JSONObject obj = lessons.getJSONObject(j);
                        SPEntry entry = new SPEntry();
                        entry.date = ft.format(date);
                        entry.lesson = obj.optString("lesson");
                        entry.teacher = obj.optString("oldTeacher");
                        entry.newTeacher = obj.optString("newTeacher");
                        entry.lesson = obj.optString("oldSubject");
                        entry.newlesson = obj.optString("newSubject");
                        entry.oldRoom = obj.optString("oldRoom");
                        entry.newRoom = obj.optString("newRoom");
                        entry.comment = obj.optString("comment");
                        if(entry.comment.equals("Entfall")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.entfall);
                        }
                        if(entry.comment.equals("Betreuung")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.betreung);
                        }
                        if(entry.comment.equals("Verlegtvon")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.verlegt);
                        }
                        else
                        {
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.empty);
                        }


                        list.add(entry);

                    }

                }

我的问题是图片设置显示了一种奇怪的行为。在第二课中,我没有得到一张照片,而在所有其他情况下,我只得到“入口”图片。 资源中的图片不同

请帮忙

列表截图:

http://img6.imagebanana.com/img/fnmedlrr/device20111018181454.png

2 个答案:

答案 0 :(得分:4)

if(entry.comment.equals("Entfall")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.entfall);
                        }
                        if(entry.comment.equals("Betreuung")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.betreung);
                        }
                        if(entry.comment.equals("Verlegtvon")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.verlegt);
                        }
                        else
                        {
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.empty);
                        }

如果仔细查看代码,最后您最终会得到2张图片emptyverlegtvon,如果要解决问题,请使用其他图片。尝试下面的代码,我刚刚添加了else if

if(entry.comment.equals("Entfall")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.entfall);
                        }
                        else if(entry.comment.equals("Betreuung")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.betreung);
                        }
                        else if(entry.comment.equals("Verlegtvon")){
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.verlegt);
                        }
                        else
                        {
                            entry.picture = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.empty);
                        }

答案 1 :(得分:1)

在json字符串中的7个课程条目中,只使用其中一个,这是Verlegtvon(也恰好是第二个条目)。我想可绘制的R.drawable.verlegt有一些问题。