当前位置: 首页 > 软件库 > 手机/移动开发 > >

httpclient-android

HttpClient repackaged for Android
授权协议 Apache-2.0 License
开发语言 Java
所属分类 手机/移动开发
软件类型 开源软件
地区 不详
投 递 者 山凌
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

httpclient-android

Build script and dependencies to create repackaged upstream version of HttpClient and depdendencies (HttpMime, HttpCore, HttpClient-Cache) and get it working on Android API version from 3 to 23

Current version: 4.5.8 (originating from upstream HttpClient 4.5.8 version)

Usage

Download the repository and simply hit ./build.sh script

Dependencies

Required dependencies are:

  • JDK 6 or newer
  • Gradle 2.4 or newer
  • find, grep, svn, patch and sed (or gsed for OS X)
  • for Kerberos support you need Android NDK, git and swig

## Configuration

Build params (ENV variables) you can use:

  • USE_GRADLE_WRAPPER, set to 0 if you want to use current Gradle from PATH
  • UPDATE_UPSTREAM, whether the build script should download SVN/GIT/... sources again (useful for recurring builds)
  • SED_CMD used variant of SED utility (default is sed -i on linux and gsed -i on Mac OS X)
  • INCLUDE_JGSS_API, experimental, whether to include Kerberos API and Negotiate, SPNego, GGS, Kerberos Auth schemes implementation
  • VERBOSE, set to 1 to get more verbose output

Maven Central

This repository version will publish the library under namespace cz.msebera.android:httpclient:4.5.8

## Maven Local

Using gradle installArchives will install the library to local Maven repository

Gradle

Gradle dependency string, once you have it installed

dependencies {
  compile "cz.msebera.android:httpclient:4.5.8"
}

Or you can simply depend on the project, like this (httpclient-android is resulting Gradle project dir)

dependencies {
  compile project("/path/to/generated/project/httpclient-android")
}

Testing the library on the device

To test the library, you can use provided android app template, in the /testing-android-app folder

This template currently just shows the response from https://httpbin.org/headers if successfull, and the error message otherwise

cd testing-android-app
./gradlew clean instalDebug
adb shell am start -n cz.msebera.android.httpclient.test/.MainActivity

If everything goes well, you should see, within seconds after running the last command, json with http headers of just finished HttpGet

 相关资料
  • 如何将字符串数据(发送到URL。我想在util类中编写一个静态方法来执行此操作。我希望方法签名如下所示 字符串url的格式应该是什么 返回的 String 是来自 服务器的响应,作为 json 数据的字符串表示形式。

  • 问题内容: 我正在尝试在Java 9 Maven项目中使用来自孵化器的HttpClient。我没有任何编译问题。该项目成功构建。但是当我尝试运行Main类时,它给了我以下异常: 我的代码只是一个模块信息文件和一个仅调用google.com并尝试读取响应的Main类: module-info.java Main.java pom.xml 我想念什么?我找到了许多有关此的文章,但他们都以这种方式进行。

  • 问题内容: 我正在尝试从HttpClient 4.0.1运行示例应用程序。它是示例部分中的文件ClientMultiThreadedExecution.java。我把在classpath这些文件:; ; ; ; ; 并且文件正确编译。在运行时,出现以下错误: 我是否缺少参考?似乎是类路径错误,但是我不知道要包含哪个jar文件?预先感谢您的帮助。 问题答案: 此异常表明 运行时 类路径中缺少所提到的

  • HttpClient 通过HTTP/HTTPS协议获取数据 安装 "require" : { "php" : ">=5.4.0", "leaps/httpclient": "1.3.4" } 基本使用 这个组件极易使用: <?php //Create an instance $HttpClient = new \Leaps\HttpClient\Adapter\Curl(); $response 

  • 这是一个 Ruby 语言的 HTTP 客户端开发包。 示例代码: require 'net/httpclient' client = Net::HTTPClient.new puts client.get('http://www.google.com.au')

  • 这是一个 HTTP 客户端开发包 ,提供非常简单的 API,采用 C# 编写用来发送 HTTP 请求以及接收 HTTP 回应。 该库比 .NET 自带的 HttpWebRequest 要简单得多,类似 Java 版的 HttpClient。支持 GET、POST 和文件上传,支持重定向和代理服务器。 目前还不支持的: Transfer-Encoding: gzip Requests with ke