[Solved] How to parse the below mentioned php file using JSON parsing in android [closed]


// try this way,hope this will help you...

try{
   JSONArray category = new JSONObject (jsonRespone).getJSONArray("category");
   for (int i=0;i<category.length();i++){
        System.out.println(i+" Value Is :"+category.getJSONArray(i).getString(0));
   }
}catch (Throwable e){
   e.printStackTrace();
}

solved How to parse the below mentioned php file using JSON parsing in android [closed]