web-dev-qa-db-ja.com

Android St​​udioのシンボルHttpGet、HttpClient、HttpResponceを解決できません

Httpのすべてのjarファイルをコピーするだけですが、Android Studioはこれらすべてのjarファイルをインポートできません。エラーが表示されます:Cannot resolve symbol HttpGet,HttpClient,HttpResponse

私のActivityファイルはこちらです:-

public class MainActivity extends AppCompatActivity {

ArrayList<Product>  productslist;
ProductAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    productslist = new ArrayList<Product>();
    new JSONAsyncTask().execute("http://opencart.codeniques.com/myshop/?route=feed/web_api/products&id=60&key=test123");

    ListView listView = (ListView)findViewById(R.id.list);
    adapter = new ProductAdapter(getApplicationContext(),R.layout.row,productslist);

    listView.setAdapter(adapter);

    listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            Toast.makeText(getApplicationContext(),productslist.get(position).getName(),Toast.LENGTH_LONG).show();
        }
    });
}

class JSONAsyncTask extends AsyncTask<String,Void,Boolean>{

    ProgressDialog dialog;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        dialog = new ProgressDialog(MainActivity.this);
        dialog.setMessage("Loading, please wait");
        dialog.setTitle("Connecting server");
        dialog.show();
        dialog.setCancelable(false);
    }

    @Override
    protected Boolean doInBackground(String... params) {
        try{
            HttpGet httppost = new HttpGet(params[0]);
            HttpClient httpclient = new DefaultHttpClient();
            HttpResponse response = httpclient.execute(httppost);

            int status = response.getStatusLine().getStatusCode();

            if(status == 200){
                HttpEntity entity = response.getEntity();
                String data = EntityUtils.toString(entity);

                JSONObject jsono = new JSONObject(data);
                JSONArray jarray = jsono.getJSONArray("products");

                for (int i = 0; i < jarray.length(); i++) {
                    JSONObject object = jarray.getJSONObject(i);

                    Product actor = new Product();

                    actor.setId(object.getString("id"));
                    actor.setName(object.getString("name"));
                    actor.setDescription(object.getString("description"));
                    actor.setHref(object.getString("href"));
                    actor.setPrice(object.getString("pirce"));
                    actor.setImage(object.getString("thumb"));
                    actor.setSpecial(object.getString("special"));
                    actor.setRating(object.getString("rating"));

                    productslist.add(actor);
            }
                return  true;
            }
        }catch (JSONException e){
            Log.e("Error :",e.getMessage());
        }catch (ParseException e){
            Log.e("Error :",e.getMessage());
        }catch (IOException e){
            Log.e("Error :",e.getMessage());
        }catch (Exception e){
            Log.e("Error :",e.getMessage());
        }
        return  false;
    }
    @Override
    protected void onPostExecute(Boolean aBoolean) {
        dialog.cancel();
        adapter.notifyDataSetChanged();
        if(aBoolean == false){
            Toast.makeText(getApplicationContext(), "Unable to fetch data from server", Toast.LENGTH_LONG).show();
        }
    }
}}

そしてここに私のgradleはここにあります-

apply plugin: 'com.Android.application'
Android {
compileSdkVersion 23
buildToolsVersion "22.0.1"

defaultConfig {
    applicationId "Android.catalyst.com.newjsonarray"
    minSdkVersion 16
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
    }}}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])

testCompile 'junit:junit:4.12'
compile 'com.Android.support:appcompat-v7:23.0.1'
compile 'com.Android.support:design:23.0.1'}
50
Anand Jain

これをdependenciesに追加するだけです

compile 'org.Apache.httpcomponents:httpcore:4.4.1'
compile 'org.Apache.httpcomponents:httpclient:4.5'

最後に

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])    
testCompile 'junit:junit:4.12'
compile 'com.Android.support:appcompat-v7:23.0.1'
compile 'com.Android.support:design:23.0.1'
compile 'org.Apache.httpcomponents:httpcore:4.4.1'
compile 'org.Apache.httpcomponents:httpclient:4.5'
}

また、次のコードも追加します。

 Android {
    useLibrary 'org.Apache.http.legacy'
         }

FYI

Apache HTTP Legacyライブラリの要件を指定するアプリがAPIレベル28(Android 9.0)以上をターゲットにしている場合、AndroidManifest.xmlの要素内に次の宣言を含める必要があります。

 <uses-library
      Android:name="org.Apache.http.legacy"
      Android:required="false" />
95
IntelliJ Amiya

HttpClientはSDK 23ではサポートされなくなりました。URLConnectionを使用するか、SDK 22にダウングレードする必要があります( 'com.Android.support:appcompat-v7:22.2.0'をコンパイルします)

SDK 23が必要な場合は、これをgradleに追加してください:

依存関係に追加:

compile 'org.Apache.httpcomponents:httpcore:4.4.1'
compile 'org.Apache.httpcomponents:httpclient:4.5'

これも追加します

Android {
    useLibrary 'org.Apache.http.legacy'
}
35
Sanju

HttpClientはAPIレベル22で廃止されましたおよびAPIレベル23で削除されました。URLConnectionを使用する必要があります。

12
TheSecond

これらのコードを依存関係に追加してください。それが動作します。

implementation 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.Apache.http.client:4.1.2'
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    implementation 'com.Android.support:appcompat-v7:23.1.0'
    implementation 'com.Android.support:design:23.1.0'
    implementation 'com.Android.support:cardview-v7:23.1.0'
    implementation 'com.Android.support:recyclerview-v7:23.1.0'

    implementation 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.Apache.http.client:4.1.2'
}
5
Rahul K A

Httpsのすべてのjarファイルをlibsフォルダーから削除し、gradleファイルに以下の依存関係を追加してください:

compile 'org.Apache.httpcomponents:httpclient:4.5'
compile 'org.Apache.httpcomponents:httpcore:4.4.3'

ありがとう。

4
AndiGeeky

Googleは、開発者に対して、ネットワーク関連のものにVolleyライブラリを使用することを公式に提案しています ここ なので、Volleyに切り替える時が来ました、ハッピーコーディング

1
Avinash Sharma

'libs'フォルダーからHttpのすべてのjarファイルを削除し、gradleファイルに以下の依存関係を追加してください:

compile 'org.Apache.httpcomponents:httpclient:4.5'
compile 'org.Apache.httpcomponents:httpcore:4.4.3'

または

useLibrary 'org.Apache.http.legacy'
1
Qaisar Ayub

私にとっては、以下が助けました

org.Apache.http.legacy.jarにあるAndroid/Sdk/platforms/Android-23/optional,を見つけて、依存関係に追加します。

ソース

1
Atul O Holic

それはSDK 23にあり、Httpclientなどは非推奨です。以下のようにターゲットSDKバージョンを変更することで修正できます。

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "vahid.hoseini.com.testclient"
        minSdkVersion 10
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'),    'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.Android.support:appcompat-v7:22.1.1'
}
0
HPbyP

プロジェクトを再構築しました

compile fileTree(dir: 'libs', include: ['*.jar'])
0
webomjaipur

これを追加するとうまくいきました。

compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.Apache.http.client:4.1.2'
0
Gomez NL