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'}
これを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" />
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'
}
HttpClientはAPIレベル22で廃止されましたおよびAPIレベル23で削除されました。URLConnection
を使用する必要があります。
これらのコードを依存関係に追加してください。それが動作します。
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'
}
Httpsのすべてのjarファイルをlibsフォルダーから削除し、gradleファイルに以下の依存関係を追加してください:
compile 'org.Apache.httpcomponents:httpclient:4.5'
compile 'org.Apache.httpcomponents:httpcore:4.4.3'
ありがとう。
Googleは、開発者に対して、ネットワーク関連のものにVolleyライブラリを使用することを公式に提案しています ここ なので、Volleyに切り替える時が来ました、ハッピーコーディング
'libs'フォルダーからHttpのすべてのjar
ファイルを削除し、gradleファイルに以下の依存関係を追加してください:
compile 'org.Apache.httpcomponents:httpclient:4.5'
compile 'org.Apache.httpcomponents:httpcore:4.4.3'
または
useLibrary 'org.Apache.http.legacy'
私にとっては、以下が助けました
org.Apache.http.legacy.jar
にあるAndroid/Sdk/platforms/Android-23/optional,
を見つけて、依存関係に追加します。
それは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'
}
プロジェクトを再構築しました
compile fileTree(dir: 'libs', include: ['*.jar'])
これを追加するとうまくいきました。
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.Apache.http.client:4.1.2'