当前位置: 首页 > 知识库问答 >
问题:

HttpClient无法在我的android studio 1.4中工作[重复]

禹兴安
2023-03-14
C:\Users\madhu\AndroidStudioProjects\LoginAndsign\app\src\main\java\com\login\loginandsign\SimpleHttpClient.java

Error:(27, 20) error: cannot find symbol class HttpClient

Error:(34, 20) error: cannot find symbol class HttpClient

Error:(36, 31) error: cannot find symbol class DefaultHttpClient

Error:(40, 13) error: cannot find symbol variable ConnManagerParams


Error:(57, 13) error: cannot find symbol class HttpClient

Error:(58, 13) error: cannot find symbol class HttpPost

Error:(58, 36) error: cannot find symbol class HttpPost

Error:(59, 13) error: cannot find symbol class UrlEncodedFormEntity

Error:(59, 51) error: cannot find symbol class UrlEncodedFormEntity

Error:(96, 13) error: cannot find symbol class HttpClient

Error:(97, 13) error: cannot find symbol class HttpGet

Error:(97, 35) error: cannot find symbol class HttpGet

我添加了下面的依赖项,但它仍然显示相同的错误

dependencies {
compile 'com.google.android.gms:play-services:+'
compile 'org.apache.httpcomponents:httpclient:4.2.6'
compile 'org.apache.httpcomponents:httpmime:4.2.6'
compile files('libs/core.jar')
}

共有1个答案

邢令
2023-03-14

您需要初始化useLibrary'org.apache.http.legace'

请检查HttpClient不会在Android Studio中导入

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.1' 


    defaultConfig {
        minSdkVersion // set yours 
        targetSdkVersion 23
        versionCode 11 //Yours
        versionName "0.1" // Yours
    }

dependencies {
compile 'com.google.android.gms:play-services:7.8.0'
compile 'org.apache.httpcomponents:httpmime:4.2.6'
compile 'org.apache.httpcomponents:httpclient:4.5'
compile files('libs/core.jar')
}

然后清理-重建-重新启动-同步项目。

 类似资料:
  • 我正在尝试在方法调用中使用它来从源中获取字符串 当在方法和类之外使用时,它可以很好地与我的url配合使用,并返回我正在寻找的正确字符串。但是,当我把它放在我的类和方法中时,它不再做任何事情。没有错误,只是什么都不返回。 作为参考,我使用的方法如下所示 我不知道为什么一旦我把它放入一个方法中,它就停止工作了。

  • 问题内容: 我找不到这个JSFiddle有什么问题。 HTML: JavaScript: 当我单击按钮时-什么也没发生。控制台显示“测试未定义” 我已经阅读了JSFiddle文档-那里说JS代码已添加到并且HTML代码已添加到(因此,此JS代码早于html,应该可以使用)。 问题答案: 该函数是在装入处理程序中定义的,因此属于不同的范围。正如@ellisbben在注释中指出的那样,您可以通过在对象

  • 问题内容: 我找不到这个JSFiddle有什么问题。 HTML: JavaScript: 当我单击按钮时-什么也没发生。控制台显示“测试未定义” 我已经阅读了JSFiddle文档- 那里说JS代码已添加到并且HTML代码已添加到(因此,此JS代码早于html,应该可以使用)。 问题答案: 该函数是在装入处理程序中定义的,因此属于不同的范围。正如@ellisbben在注释中指出的那样,您可以通过在对

  • 我有一个Date对象,如下所示: 我需要格式化日期,以获得另一个日期对象与此格式:2013-12-23 14:57:28 我尝试了以下代码: 我尝试了以下代码: 你能告诉我我做错了什么吗?我在谷歌上搜索了一下,但我尝试过的格式日期的解决方案或多或少都是这样的。非常感谢任何帮助。

  • 我正在开发一个基于spring security的web应用程序,我想根据登录用户的角色是ADMIN还是user来限制侧栏上的项目。就身份验证而言,一切正常,但角色没有按预期工作。 跟随这篇文章 例如- 即使我以-ADMIN登录,上述元素也永远不可见。 有人能在这里帮助我理解出了什么问题吗? 安全配置 UserDetailsImpl 用户详细信息服务 用户详细信息 控制器 使用者 在db中创建的表

  • 所以我不知道如何让桌子在雪花中旋转。我试图在这里为帮助页面建模https://docs.snowflake.com/en/sql-reference/constructs/pivot.html。 枢轴输出 sql文本: