php-JSONException錯誤:android用戶端

來源:互聯網
上載者:User
關鍵字 php android
phpandroid

java.檔案,錯誤:int success = json.getInt(TAG_SUCCESS);

   protected String doInBackground(String... args) {    // Building Parameters    List params = new ArrayList();    // getting JSON string from URL    JSONObject json = jParser.makeHttpRequest(url_all_products, "GET", params);    // Check your log cat for JSON reponse    Log.d("All Products: ", json.toString());    try {        // Checking for SUCCESS TAG        **int success = json.getInt(TAG_SUCCESS);**        if (success == 1) {            // products found            // Getting Array of Products            products = json.getJSONArray(TAG_PRODUCTS);            Log.d("level1: ", "@@@@@@@@@@@@@@@@@@@@@@$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$");            // looping through All Products            for (int i = 0; i < products.length(); i++) {                JSONObject c = products.getJSONObject(i);                // Storing each json item in variable                String id = c.getString(TAG_PID);                String name = c.getString(TAG_NAME);                Log.d("level2: ", "lksdjflsdjf0wrewrwje************************");                // creating new HashMap                HashMap map = new HashMap();                // adding each child node to HashMap key => value                map.put(TAG_PID, id);                map.put(TAG_NAME, name);                // adding HashList to ArrayList                productsList.add(map);            }        } else {            // no products found            // Launch Add New product Activity            Log.d("level3: ", "jldksffffffffffffffffffffffffffffffffffffff");            Intent i = new Intent(getApplicationContext(),                    NewProductActivity.class);            // Closing all previous activities            i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);            startActivity(i);        }    } catch (JSONException e) {        e.printStackTrace();    }    return null;}

伺服器的jsonArray如下,我已經通過jsonlint.con驗證過了

     {"tbl_user": {    "0": {        "id": "195",        "email": "aru@yahoo.com",        "password": "202cb962ac59075b964b07152d234b70",        "fname": "aru",        "lname": "sharma"    },    "1": {        "id": "196",        "email": "manu@yahoo.com",        "password": "202cb962ac59075b964b07152d234b70",        "fname": "manu",        "lname": "sharma"    },    "2": {        "id": "197",        "email": "rishi@yahoo.com",        "password": "202cb962ac59075b964b07152d234b70",        "fname": "rishi",        "lname": "sharma"    },    "success": 1}}

然後PHP代碼如下:

    function getUsers() {$sql = "select * FROM tbl_user ORDER BY fname";try {    $db = getConnection();    $stmt = $db->query($sql);      $users = $stmt->fetchAll(PDO::FETCH_OBJ);    $users["success"] = 1;    $db = null;    echo '{"tbl_user": ' . json_encode($users) . '}';} catch(PDOException $e) {    echo '{"error":{"text":'. $e->getMessage() .'}}'; }}

請幫我解決一下,謝謝。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.