HTTP工具类

        public static final StringDEF_CHATSET ="UTF-8";

public static final int DEF_CONN_TIMEOUT =30000;

public static final int DEF_READ_TIMEOUT =30000;

public static StringuserAgent ="Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36";

/**

    * @param url 请求地址

    * @param headers 头部信息

    * @param targetStatusCode 请求的状态

*/

    public static String post(String url, Map headers,int targetStatusCode)throws Exception {

try (CloseableHttpClient httpclient = HttpClients.createDefault()) {

HttpPost httpPost =new HttpPost(url);

if (headers !=null && headers.size() >0) {

for (Map.Entry header : headers.entrySet()) {

httpPost.addHeader(header.getKey(), header.getValue());

}

}

CloseableHttpResponse response = httpclient.execute(httpPost);

int responseCode = response.getStatusLine().getStatusCode();

if (responseCode == targetStatusCode) {

HttpEntity respEntity = response.getEntity();

//                return EntityUtils.toByteArray(respEntity);

                return EntityUtils.toString(respEntity);

}

}catch (Exception e) {

e.printStackTrace();

throw new Exception(e.toString());

}

return  null;

}

/**

*

    * @param strUrl 接口地址

    * @param params 相关的参数

    * @param method 请求的方式 GET

*/

    public static String net(String strUrl, Map params,String method)throws Exception {

HttpURLConnection conn =null;

BufferedReader reader =null;

String rs =null;

try {

StringBuffer sb =new StringBuffer();

if(method==null || method.equals("GET")){

if (params!=null){

strUrl = strUrl+"?"+urlencode(params);

}

}

URL url =new URL(strUrl);

conn = (HttpURLConnection) url.openConnection();

if(method==null || method.equals("GET")){

conn.setRequestMethod("GET");

}

conn.setRequestProperty("User-agent",userAgent);

conn.setUseCaches(false);

conn.setConnectTimeout(DEF_CONN_TIMEOUT);

conn.setReadTimeout(DEF_READ_TIMEOUT);

conn.setInstanceFollowRedirects(false);

conn.connect();

InputStream is = conn.getInputStream();

reader =new BufferedReader(new InputStreamReader(is,DEF_CHATSET));

String strRead =null;

while ((strRead = reader.readLine()) !=null) {

sb.append(strRead);

}

rs = sb.toString();

}catch (IOException e) {

e.printStackTrace();

}finally {

if (reader !=null) {

reader.close();

}

if (conn !=null) {

conn.disconnect();

}

}

return rs;

}

/**

*

    * @param strUrl 接口地址

    * @param params 相关的参数

    * @param method 请求的方式 GET

*/

    public static String get(String strUrl, Map params,String method,String header,String accessToken)throws Exception {

HttpURLConnection conn =null;

BufferedReader reader =null;

String rs =null;

try {

StringBuffer sb =new StringBuffer();

if(method==null || method.equals("GET")){

if (params!=null){

strUrl = strUrl+"?"+urlencode(params);

}

}

URL url =new URL(strUrl);

conn = (HttpURLConnection) url.openConnection();

if(method==null || method.equals("GET")){

conn.setRequestMethod("GET");

}

conn.setRequestProperty(header,accessToken);

conn.setRequestProperty("User-agent",userAgent);

conn.setUseCaches(false);

conn.setConnectTimeout(DEF_CONN_TIMEOUT);

conn.setReadTimeout(DEF_READ_TIMEOUT);

conn.setInstanceFollowRedirects(false);

conn.connect();

InputStream is = conn.getInputStream();

reader =new BufferedReader(new InputStreamReader(is,DEF_CHATSET));

String strRead =null;

while ((strRead = reader.readLine()) !=null) {

sb.append(strRead);

}

rs = sb.toString();

}catch (IOException e) {

e.printStackTrace();

}finally {

if (reader !=null) {

reader.close();

}

if (conn !=null) {

conn.disconnect();

}

}

return rs;

}

public static String urlencode(Map data) {

StringBuilder sb =new StringBuilder();

for (Map.Entry i : data.entrySet()) {

try {

sb.append(i.getKey()).append("=").append(URLEncoder.encode(i.getValue()+"","UTF-8")).append("&");

}catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

}

return sb.toString();

}

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 先创建服务端的APP 1.官网下载Winrun4j。http://winrun4j.sourceforge.net...
    Alex_1799阅读 1,895评论 1 2
  • Overview The ccxt library is a collection of available cr...
    郭蝈儿蝈儿阅读 3,858评论 0 1
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,839评论 18 399
  • 到我微博(我主页有,或到微博搜“淏渊3”)转发关注送小东西 今天是个好日子,从转发关注中抽小伙伴送东西。准备了4份...
    画师昊渊阅读 550评论 3 6
  • info.plist本身不支持多语言 这时候把对应内部的key找到, 新建一个infoPlist.string 放...
    Zszen阅读 3,256评论 0 51