问答详情
源自:3-3 网络请求(下)

httpGet

HTTPGet request = new HttpGet(buf.tostring);

我用的Android studio 没有这个属性 ,我也找不到 clict

提问者:wyong1023 2017-04-10 23:16

个回答

  • qq_朱正仁_0
    2017-04-14 18:21:36

    在bulid.gradle中加入useLibrary 'org.apache.http.legacy' 这是因为 Android6.0之后不支持httpclient

    android {
       useLibrary 'org.apache.http.legacy'
       compileSdkVersion 25
       buildToolsVersion "25.0.2"
       defaultConfig {
           applicationId "cn.zhuzhengren.youdaodemo123456"
           minSdkVersion 23
           targetSdkVersion 25
           versionCode 1
           versionName "1.0"
           testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
       }