I am try to get a group of data from php server to android. but a error are occurred when I execute the project, try refer to several related questions however I still cant come up with a solution.
here is my asynctask which will establish connection and sent momentID to php
class GetAllComment extends AsyncTask<String, String, ArrayList<Comment>> {
protected ArrayList<Comment> doInBackground(String... params) {
List<NameValuePair> param = new ArrayList<NameValuePair>();
int success;
try {
Log.d("","@@@### " + postedID);
param.add(new BasicNameValuePair("momentid", postedID));
JSONObject json = jsonParser.makeHttpRequest(
"http://192.168.168.111:80/testmoment/getallcomment.php", "GET", param);
// check your log for json response
Log.d("Single comments Details", json.toString());
// json success tag
success = json.getInt("success");
if (success == 1) {
JSONArray productObj = json
.getJSONArray("product"); // JSON Array
try {
JSONObject comments = productObj.getJSONObject(0);
Comment comment = new Comment();
comment.setCommentContentbody(comments.getString("vcontentbody"));
comment.setCommentDate(comments.getString("vcdate"));
comment.setCommentTime(comments.getString("vctime"));
list.add(comment);
Log.d("","tryget : " + comments.getString("vcid") + " AND " + comments.getString("vcontentbody") + " AND " + comments.getString("vcdate") + " AND " + comments.getString("vctime"));
} catch (JSONException e) {
e.printStackTrace();
}
} else {
}
}catch (JSONException e) {
e.printStackTrace();
}
return list;
}
protected void onPostExecute(ArrayList<Comment> list) {
cAdapter = new CommentAdapter(getActivity().getBaseContext(), mCommentLists);
commentList.setAdapter(cAdapter);
mComment = new Comment();
cAdapter.Update();
if(list != null){
for(Comment comment: list){
cAdapter.add(comment);
}
}
cAdapter.notifyDataSetChanged();
}
}
here is my php script :
<?php
header('Content-type: application/json');
include "db.config.php";
if (isset($_GET['momentid'])){
$momentid = $_GET['momentid'];
$result =mysql_query("SELECT * FROM commenttable WHERE vcmomentid = $momentid");
if (!empty($result)) {
// check for empty result
while($row=mysql_fetch_assoc($result))
$json_output[]=$row;
print(json_encode($json_output));
mysql_close();
echo json_encode($response);
} else {
// no product found
$response["success"] = 0;
$response["message"] = "No product found";
// echo no users JSON
echo json_encode($response);
}
} else {
// no product found
$response["success"] = 0;
$response["message"] = "No product found";
// echo no users JSON
echo json_encode($response);
}
?>
here is the error I get once execute :
JSON Parser: Error parsing data org.json.JSONException: Value [{"vcontentbody":"gkkgv","vcid":"1","vcmomentid":"109","vcdate":"2015-11-23","vcuserid":"1578","vctime":"17:09 PM"}] of type org.json.JSONArray cannot be converted to JSONObject
Please Help me find the error. Thanks
of type org.json.JSONArray cannot be converted to JSONObjectJsondata.