3
  new Thread(new Runnable() {
                public void run() {
                    HttpClient client = new DefaultHttpClient();
                    HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); //Timeout Limit
                    HttpResponse response;
                    JSONObject json = new JSONObject();
                    try{
                        HttpPost post = new HttpPost(URL);
                        post.setHeader("Content-type", "application/json");
                        json.put("username", userName);
                        json.put("password", password);
                        StringEntity se = new StringEntity( json.toString());
                        se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
                        post.setEntity(se);
                        response = client.execute(post);
                        /*Checking response */
                        if(response!=null){
                            String temp = EntityUtils.toString(response.getEntity()); //Get the data in the entity
                            JSONObject json2 = (JSONObject)new JSONParser().parse(temp);

                            //JsonObject o = new JsonParser().parse(temp).getAsJsonObject();
                            Log.v("response", json2.get("state").toString());
                    }}
                    catch(Exception e){
                        e.printStackTrace();
                        //createDialog("Error", "Cannot Estabilish Connection");
                    }
                }
              }).start();

我有这段代码,它返回“temp”字符串。我想将此字符串解析为 JSON 对象,并将 json-simple 1.1.1.jar 添加到我的引用库中。但是 classnotfound 错误和 classdeffound 错误出现在 log cat 中。如何解决这个问题?

4

1 回答 1

12

不要像那样添加 jar 文件..按照这些步骤

你应该试试这个:

  1. RemoveJARJava 中对项目中的所有引用project -> properties -> Java build path -> libraries

  2. libs如果项目根目录不存在,则创建一个文件夹 将其复制JAR到 libs 文件夹中。

  3. 如果仍然没有运行确定。右键单击您的项目 > Android 工具 > 修复项目属性

清理你的项目并运行。它会起作用的

于 2012-09-20T11:01:27.643 回答