0

下面是我的代码我想在我的代码中解析 json 数据但我没有得到数组“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>
4

2 回答 2

0

我建议您花一些时间学习 Jackson 一个高性能 JSON 处理器 Java 库。它使用起来非常简单但功能非常强大

于 2013-08-28T20:02:03.927 回答
0

您将 int 传递给方法getJSONObject(): createRow(school3.getJSONObject(j).j is an 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");
}
于 2013-08-28T19:56:23.913 回答