10

以下

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.StatusLine;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;

解決できません。Apache Http パッケージをダウンロードし、外部 jar オプションを使用してインポートしましたが、それでも解決されません。Androidでは、SDKで推測して動作するようですが、ここではAndroidを行っていません。間違ったパッケージを受け取りましたか?

これがリンクだと思います:

アパッチ

4

3 に答える 3

13

それはOKに聞こえます

1) The .jar file in question should be something like "httpcore-4.0.1.jar". 
   Please confirm the name.

2) Adding this to "External Libraries" is absolutely the correct thing to do.

3) For compiling in the Eclipse IDE, you must:

   a) Select your project

   b) Select "Build Path" > "Add External Libraries"

4) For running in the Eclipse IDE, you must

   a) Select "Run" > "Run configurations".  
      Choose your (Java Application?) configuration.

   b) Select "Classpath" > "Add External Jar"

5) For running outside of the Eclipse IDE, you must make sure the .jar 
   file is present and your -cp (Classpath) argument is set correctly.
于 2012-08-29T21:02:07.183 に答える
0

これらの JAR を最初に Android プロジェクトに追加した後、それらを別の (Android 以外の) プロジェクトで使用したい場合は、JAR をこの別のプロジェクトにインポートしたことを確認してください。Eclipse では、各プロジェクトが独自のビルド クラスパス設定を保持しているため、JAR を 1 つのプロジェクトにインポートしても、他のプロジェクトで自動的に使用できるようにはなりません。

于 2012-08-29T21:59:55.477 に答える