0

我不知道我的应用程序有什么问题。目前,我正在开发一个餐厅查找器应用程序。对于数据库,我使用 PHP 和 mySQL。我从界面插入的数据出现在数据库(本地主机)中。但是,该应用程序一直显示消息“应用程序 RestFinder (process.com.example.restaurantfinder) 已意外停止。请重试。” 然后它崩溃了。

当我检查日志文件时,第一个日志文件是:

Error parsing data org.json.JSONException: Value db_connect.php of type java.lang.String cannot be converted to JSONObject

有人可以给我一个解决方案吗?

这些是我怀疑导致错误的 JSONParser.java 的代码。

public JSONObject makeHttpRequest(String url, String method, List<NameValuePair> params) {

    // Making HTTP request
    try {
        // check for request method
        if (method == "POST") {
            // request method is POST
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);
            httpPost.setEntity(new UrlEncodedFormEntity(params));

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            is = httpEntity.getContent();

        } else if(method == "GET") {
            // request method is GET
            DefaultHttpClient httpClient = new DefaultHttpClient();
            String paramString = URLEncodedUtils.format(params, "utf-8");
            url += "?" + paramString;
            HttpGet httpGet = new HttpGet(url);

            HttpResponse httpResponse = httpClient.execute(httpGet);
            HttpEntity httpEntity = httpResponse.getEntity();
            is = httpEntity.getContent();
        }

    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

    try {
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                is, "iso-8859-1"), 8);
        StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        }
        is.close();
        json = sb.toString();
    } catch (Exception e) {
        Log.e("Buffer Error", "Error converting result " + e.toString());
    }

    // try parse the string to a JSON object
    try {
        jObj = new JSONObject(json.substring(6));
    } catch (JSONException e) {
        Log.e("JSON Parser", "Error parsing data " + e.toString());
    }

    // return JSON String
    return jObj;
}
4

2 回答 2

0

您能否发布导致此异常的 JSON 数据输入。

您也可以从 stockoverflow 参考这个解决方案 - JSONException: Value of type java.lang.String cannot be convert to JSONObject

于 2013-10-28T00:04:23.737 回答
0

java.lang.String 类型的 db_connect.php

这里向您表明您不是做错事的人(这次:D),服务器配置错误,并且您收到无效响应。

请发布指定 URL 的输出以获得此结果,以及您正在运行的 php 脚本。

于 2013-10-28T05:03:14.833 回答