okhttp使用

okhttp( https://github.com/square/okhttp/ )是一个开源高效的HTTP客户端API工具。


maven依赖

https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp

<dependency>
	<groupId>com.squareup.okhttp3groupId>
	<artifactId>okhttpartifactId>
	<version>4.0.0-RC1version>
dependency>

基本用法文档(Java 1.8)

包括同步/异步get,增加请求header,各种post等。

http://square.github.io/okhttp/recipes/

你可能感兴趣的:(Java)