2

我做了一个简单的 GET 请求,如果我的登录名和密码正确,则返回 1 或 0。我在另一个线程上进行连接。

像这样 :

public void getConnection(){

    String url = null;

    url = NOM_HOTE + PATH_METHODE + "identifiant="+ identifiant.getText().toString() + "&password="+ password.getText().toString();

     HttpClient httpClient = new DefaultHttpClient();

     try{
         HttpGet httpGet = new HttpGet(url);
         HttpResponse httpResponse = httpClient.execute(httpGet);
         HttpEntity httpEntity = httpResponse.getEntity();

         if(httpEntity != null){


             InputStream inputStream = httpEntity.getContent();

             //Lecture du retour au format JSON
             BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
             StringBuilder stringBuilder = new StringBuilder();

             String ligneLue = bufferedReader.readLine();
             while(ligneLue != null){
                 stringBuilder.append(ligneLue + " \n");
                 ligneLue = bufferedReader.readLine();
             }
             bufferedReader.close();

             JSONObject jsonObject = new JSONObject(stringBuilder.toString());

             Log.i("Chaine JSON", stringBuilder.toString());   


             JSONObject jsonResultSet = jsonObject.getJSONObject("nb"); <--it's here where the error occured

//               int nombreDeResultatsTotal = jsonResultSet.getInt("nb");
//               Log.i(LOG_TAG, "Resultats retourne" + nombreDeResultatsTotal);    

         }// <-- end IF          
     }catch (IOException e){
         Log.e(LOG_TAG+ "1", e.getMessage());
     }catch (JSONException e){
         Log.e(LOG_TAG+ "2", e.getMessage());

     }
}

我有一个这样的 JSON 返回:{"nb":"1"}或者{"nb":"0"} 所以我的 JSON 是正确的。catch(JSONException但是当我提交表单时出现此错误:

11-07 17:01:57.833:E/ClientJSON2(32530):java.lang.String 类型的 nb 处的值 1 无法转换为 JSONObject

我不明白为什么,而我的语法,连接是正确的,并且在带有标签“Chaine JSON”的日志上,我{"nb:"1"}在响应中..

4

3 回答 3

5

nb 是 a String,而不是 a JSONObject。改变

JSONObject jsonResultSet = jsonObject.getJSONObject("nb");

String result = jsonObject.getString("nb");
于 2013-11-08T08:19:44.447 回答
0

“nb”表示的值是字符串而不是对象。

如果 value 是数字,则使用jsonObject.getString("nb");even会起作用jsonObject.getInt("nb");

于 2013-11-08T08:25:47.110 回答
0

利用

String myReturnValue = jsonObject. getString("nb");

代替

JSONObject jsonResultSet = jsonObject.getJSONObject("nb");

这将返回一个字符串;)

于 2013-11-08T08:21:51.703 回答