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-simple1.1.1.jarも追加しました。ただし、classnotfoundエラーとclassdeffoundエラーはlogcatに表示されます。これを解決する方法は?

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 に答える