如何获取json数组和对象

时间:2013-08-28 19:53:21

标签: android

下面是我的代码我想解析我的代码中的json数据bur我没有得到数组“dish_nutrition”:它在第6行显示错误JSONObject类型中的方法getJSONObject(String)不适用于参数(int)请帮助我,我该怎么办? 什么是解析这些数据的正确方法???

"status":1,
"data":
"dish_nutrition":
{"1":
{"name":"Cholesterol and Diet",
"qty":"2"},
"2":
{"name":"Cholesterol and Diet",
"qty":"1"
}
}}



          JSONObject json2 = new JSONObject(str);

        status = json2.getString("status");
        if (status.equals("1")) {

                    JSONObject school3 = json2.getJSONObject("dish_nutrition");




           final TableLayout table = (TableLayout)  findViewById(R.id.table2);
            for (int j = 0; j < school3.length(); j++) {

     //line6 show rror The method getJSONObject(String) in the type JSONObject is not  
             applicable for the arguments (int)      
   line 6//   final View row =    createRow(school3.getJSONObject(j));
                table.addView(row);

            }







            public View createRow(JSONObject item) throws JSONException {
    View row = getLayoutInflater().inflate(R.layout.rows, null);
    ((TextView) row.findViewById(R.id.localTime)).setText(item
            .getString("name"));
    ((TextView) row.findViewById(R.id.apprentTemp)).setText(item

    .getString("qty"));

    return row;






                   <TableLayout
         android:id="@+id/table2"
         android:layout_width="fill_parent"
           android:layout_below="@+id/test_button_text23"
         android:layout_marginLeft="45dp"
         android:layout_marginBottom="25dp"
         android:paddingBottom="20dp"

         android:layout_marginRight="45dp"

      android:layout_height="fill_parent"
      android:stretchColumns="*" >

     <TableRow
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/border7"
     >



    <TextView
        android:gravity="left"
         android:textStyle="bold"
         android:background="@drawable/border7"
         android:paddingLeft="10dp"
        android:text="Quantity" />
     <TextView
        android:gravity="center"
        android:text="Item"
        android:background="@drawable/border7"
        android:textStyle="bold" />

</TableRow>

</TableLayout>



     ///row.xml///////////



       <?xml version="1.0" encoding="utf-8"?>
   <TableRow xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
  android:layout_height="match_parent" >


  <TextView

   android:id="@+id/apprentTemp"
     android:textColor="#000000"
      android:background="@drawable/border7"
       android:paddingLeft="10dp"
       android:gravity="left"


   />
 <TextView

     android:id="@+id/localTime"
     android:textColor="#000000"
      android:background="@drawable/border7"
      android:gravity="center"


   />



     </TableRow>

2 个答案:

答案 0 :(得分:0)

您正在将方法getJSONObject()传递给:createRow(school3.getJSONObject(j).j是一个int。

school3是一个不是数组的对象。您可以按school3.getJSONObject("1")获取值。也许你想使用数组而不是对象,如果可能的话?现在,您可以通过执行以下操作获取名称值:school3.getJSONObject("1").getString("name");

使用数组看起来像:

"dish_nutrition":
[ {"name":"Cholesterol and Diet", "qty":"2"},
  {"name":"Cholesterol and Diet", "qty":"1"} ]

然后你可以获得数组:json2.getJSONArray("dish_nutrition"); 并循环遍历:

for (int j = 0; j < school3.length(); j++) {
    JSONObject jObject = school3.getJSONObject(j);
    String name = jObject.getString("name");
}

答案 1 :(得分:0)

我建议您花一些时间学习杰克逊的高性能JSON处理器Java库。它使用非常简单但非常强大