java发起http请求调用post与get接口的方法实例

目录
  • 一、java调用post接口
    • 1、使用URLConnection或者HttpURLConnection
    • 2、使用CloseableHttpClient
    • 3、使用HttpCaller
  • 二、java调用get接口
  • 总结

一、java调用post接口

1、使用URLConnection或者HttpURLConnection

java自带的,无需下载其他jar包

URLConnection方式调用,如果接口响应码被服务端修改则无法接收到返回报文,只能当响应码正确时才能接收到返回

public static String sendPost(String url, String param) {
        OutputStreamWriter out = null;
        BufferedReader in = null;
        StringBuilder result = new StringBuilder("");
        try {
            URL realUrl = new URL(url);
            // 打开和URL之间的连接
            URLConnection conn = realUrl.openConnection();
            // 设置通用的请求属性
            conn.setRequestProperty("Content-Type","application/json;charset=UTF-8");
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 发送POST请求必须设置如下两行
            conn.setDoOutput(true);
            conn.setDoInput(true);
            // 获取URLConnection对象对应的输出流
            out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8");
            // 发送请求参数
            out.write(param);
            // flush输出流的缓冲
            out.flush();
            // 定义BufferedReader输入流来读取URL的响应
            in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8"));
            String line;
            while ((line = in.readLine()) != null) {
                result.append(line);
            }
        } catch (Exception e) {
            System.out.println("发送 POST 请求出现异常!"+e);
            e.printStackTrace();
        }
        //使用finally块来关闭输出流、输入流
        finally{
        	if(out!=null){ try { out.close(); }catch(Exception ex){} }
        	if(in!=null){ try { in.close(); }catch(Exception ex){} }
        }
        return result.toString();
    }

HttpURLConnection方式调用

//ms超时毫秒,url地址,json入参
public static String httpJson(int ms,String url,String json) throws Exception{
		String err = "00", line = null;
		StringBuilder sb = new StringBuilder();
		HttpURLConnection conn = null;
		BufferedWriter out = null;
		BufferedReader in = null;
		try{
			conn = (HttpURLConnection) (new URL(url.replaceAll("/","/"))).openConnection();
			conn.setRequestMethod("POST");
			conn.setDoOutput(true);
			conn.setDoInput(true);
			conn.setUseCaches(false);
			conn.setConnectTimeout(ms);
			conn.setReadTimeout(ms);
			conn.setRequestProperty("Content-Type","application/json;charset=utf-8");
			conn.connect();
			out = new BufferedWriter(new OutputStreamWriter(conn.getOutputStream(),"utf-8"));
			out.write(new String(json.getBytes(), "utf-8"));
			out.flush();//发送参数
			int code = conn.getResponseCode();
			if (conn.getResponseCode()==200){
				in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8"));
				while ((line=in.readLine())!=null)
					sb.append(line);
			}//接收返回值

		}catch(Exception ex){
			err=ex.getMessage();
		}
		try{ if (out!=null) out.close(); }catch(Exception ex){};
		try{ if (in!=null) in.close(); }catch(Exception ex){};
		try{ if (conn!=null) conn.disconnect();}catch(Exception ex){}
		if (!err.equals("00")) throw new Exception(err);
		return sb.toString();
	}

2、使用CloseableHttpClient

使用的jar包

<dependency>
    <groupId>com.alibaba.csb.sdk</groupId>
    <artifactId>http-client</artifactId>
    <version>1.1.5.1</version>
</dependency>
public static String httpPostJson(String url,String json) throws Exception{
		String data="";
		CloseableHttpClient httpClient = null;
		CloseableHttpResponse response = null;
		try {
			httpClient = HttpClients.createDefault();
			HttpPost httppost = new HttpPost(url);
			httppost.setHeader("Content-Type", "application/json;charset=UTF-8");
			StringEntity se = new StringEntity(json,Charset.forName("UTF-8"));
	        se.setContentType("text/json");
	        se.setContentEncoding("UTF-8");
	        httppost.setEntity(se);
	        response = httpClient.execute(httppost);
	        int code = response.getStatusLine().getStatusCode();
	        System.out.println("接口响应码:"+code);
	        data = EntityUtils.toString(response.getEntity(), "utf-8");
	        EntityUtils.consume(response.getEntity());
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			if(response!=null){ try{response.close();}catch (IOException e){} }
			if(httpClient!=null){ try{httpClient.close();}catch(IOException e){} }
		}
		return data;
	}

3、使用HttpCaller

使用的jar包同第2个中的jar包。

详情可以查看阿里云总线CSB

https://help.aliyun.com/document_detail/148571.html

public static String sendPost(){
		String result = "";
		HttpParameters.Builder builder = HttpParameters.newBuilder();
		builder.requestURL("URL") // 设置请求的URL
        		.api("api") // 设置服务名
        		.version("version") // 设置版本号
        		.method("post") // 设置调用方式, get/post
        		.accessKey("ak").secretKey("sk"); // 设置accessKey 和 设置secretKey
		// 设置请求参数(json格式)
        Map<String,String> param = new HashMap<String,String>();
        param.put("key1","value1");
        param.put("key2","value2");
        //加密,没有加密则不需要encryptParam,直接用param
        Map<String,String> encryptParam = new HashMap<String,String>();
        encryptParam.put("key3", getData(JSON.toJSONString(param)));
        ContentBody cb = new ContentBody(JSON.toJSONString(encryptParam));
        builder.contentBody(cb);

        try {
        	result = HttpCaller.invoke(builder.build());
		} catch (Exception e) {
			e.printStackTrace();
		}

        return result;
	}

	//自己的加密方式
	public static String getData(String data1){
		return "加密后的密文";
	}

二、java调用get接口

使用java自带的URLConnection

//将map型转为请求参数型
public static String getUrlData(Map<Object, Object> data) throws Exception{
	StringBuffer sb = new StringBuffer();
	try {
		Set<Map.Entry<Object, Object>> entries = data.entrySet();
		Iterator<Map.Entry<Object, Object>> iterators = entries.iterator();
		while(iterators.hasNext()){
			Map.Entry<Object, Object> next = iterators.next();
			sb.append(next.getKey().toString().trim()).append("=").append(URLEncoder.encode(next.getValue() + "", "UTF-8").trim()).append("&");
		}
		sb.deleteCharAt(sb.length() - 1);
	} catch (Exception e) {
		sb.append(e.toString());
	}
	return sb.toString();
}

//strUrl截止到?,例:http://127.0.0.1:8080/api/method?
public static String httpGet(String strUrl){
	Map<Object, Object> params = new HashMap<Object, Object>();
	params.put("key1", "value1");
	params.put("key2", "value2");
	String url=strUrl + getUrlData(params);

  	StringBuilder result = new StringBuilder();
    BufferedReader in = null;
    try {
        URL realUrl = new URL(url);
        // 打开和URL之间的连接
        URLConnection connection = realUrl.openConnection();
        // 设置通用的请求属性
        connection.setRequestProperty("accept", "*/*");
        connection.setRequestProperty("connection", "Keep-Alive");
        connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
        // 建立实际的连接
        connection.connect();
        // 获取所有响应头字段
        // 定义 BufferedReader输入流来读取URL的响应
        in = new BufferedReader(new InputStreamReader(connection.getInputStream(),"UTF-8"));
        String line;
        while ((line = in.readLine()) != null) {
            result.append(line);
        }
    } catch (Exception e) {
        System.out.println("发送GET请求出现异常!" + e);
        e.printStackTrace();
    }
    finally {
    	if (in != null){ try { in.close(); }catch(Exception e2){} }
    }
    return result.toString();
}

总结

到此这篇关于java发起http请求调用post与get接口的文章就介绍到这了,更多相关java调用post与get接口内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • Java如何发起http请求的实现(GET/POST)

    前言 在未来做项目中,一些功能模块可能会采用不同的语言进行编写.这就需要http请求进行模块的调用.那么下面,我将以Java为例,详细说明如何发起http请求. 一.GET与POST GET和POST是HTTP的两个常用方法. GET指从指定的服务器中获取数据 POST指提交数据给指定的服务器处理 1.GET方法 使用GET方法,需要传递的参数被附加在URL地址后面一起发送到服务器. 例如:http://121.41.111.94/submit?name=zxy&age=21 特点: GET请求

  • Java 发送http请求(get、post)的示例

    1.情景展示 java发送get请求.post请求(form表单.json数据)至另一服务器: 可设置HTTP请求头部信息,可以接收服务器返回cookie信息,可以上传文件等: 2.代码实现 所需jar包:httpcore-4.4.1.jar:httpclient-4.4.1.jar:httpmime-4.4.1.jar:epoint-utils-9.3.3.jar import java.io.File; import java.io.IOException; import java.io.I

  • Java发送http请求的示例(get与post方法请求)

    package com.jiucool.www.struts.action;  import java.io.BufferedReader;  import java.io.DataOutputStream;  import java.io.File;  import java.io.FileReader;  import java.io.IOException;  import java.io.InputStreamReader;  import java.net.HttpURLConnect

  • HTTP请求 GET与POST方法的区别

    1.HTTP请求格式: <request line> <headers> <blank line> [<request-body>] 在HTTP请求中,第一行必须是一个请求行(request line),用来说明请求类型.要访问的资源以及使用的HTTP版本.紧接着是一个首部(header)小节,用来说明服务器要使用的附加信息.在首部之后是一个空行,再此之后可以添加任意的其他数据[称之为主体(body)]. 2.GET与POST区别 HTTP定义了与服务器交互

  • java发起http请求调用post与get接口的方法实例

    目录 一.java调用post接口 1.使用URLConnection或者HttpURLConnection 2.使用CloseableHttpClient 3.使用HttpCaller 二.java调用get接口 总结 一.java调用post接口 1.使用URLConnection或者HttpURLConnection java自带的,无需下载其他jar包 URLConnection方式调用,如果接口响应码被服务端修改则无法接收到返回报文,只能当响应码正确时才能接收到返回 public st

  • Java发起http请求的完整步骤记录

    前言 在未来做项目中,一些功能模块可能会采用不同的语言进行编写.这就需要http请求进行模块的调用.那么下面,我将以Java为例,详细说明如何发起http请求. 一.GET与POST GET和POST是HTTP的两个常用方法. GET指从指定的服务器中获取数据 POST指提交数据给指定的服务器处理 1.GET方法 使用GET方法,需要传递的参数被附加在URL地址后面一起发送到服务器. 例如:http://121.41.111.94/submit?name=zxy&age=21 特点: GET请求

  • java发起http请求获取返回的Json对象方法

    话不多说,先看代码! /** * Created by david on 2017-7-5. */ import com.google.gson.JsonObject; import com.google.gson.JsonParser; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import ja

  • Java获取此次请求URL以及服务器根路径的方法

    本文介绍了Java获取此次请求URL以及获取服务器根路径的方法,并且进行举例说明,感兴趣的朋友可以学习借鉴下文的内容. 一. 获取此次请求的URL String requestUrl = request.getScheme() //当前链接使用的协议 +"://" + request.getServerName()//服务器地址 + ":" + request.getServerPort() //端口号 + request.getContextPath() //应用

  • java获取http请求的Header和Body的简单方法

    在http请求中,有Header和Body之分,读取header使用request.getHeader("..."); 读取Body使用request.getReader(),但getReader获取的是BufferedReader,需要把它转换成字符串,下面是转换的方法. public class TestController { @RequestMapping("/a") protected void doPost(HttpServletRequest requ

  • python 调用有道api接口的方法

    初学python ,研究了几天,写了一个python 调用 有道api接口程序 效果看下图: 申明:代码仅供和我一样的初学者学习交流 有道api申请地址http://fanyi.youdao.com/openapi?path=data-mode 申请很简单的 ps:审核不用花时间的,请勿滥用!! #-*- coding: UTF-8 -*- import urllib import urllib2 import requests import json import sys reload(sys

  • java发送url请求获取返回值的二种方法

    下面提供二种方法会使用java发送url请求,并获取服务器返回的值 第一种方法: 复制代码 代码如下: import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.NameValuePair;import org.apache.http.client.HttpClient;import org.apache.http.client.entity.UrlEncodedFor

  • MybatisPlus调用原生SQL的三种方法实例详解

    目录 前言 方法一 方法二 方法三 MyBatis-Plus执行原生SQL 前言 在有些情况下需要用到MybatisPlus查询原生SQL,MybatisPlus其实带有运行原生SQL的方法,我这里列举三种 方法一 这也是网上流传最广的方法,但是我个人认为这个方法并不优雅,且采用${}的方式代码审计可能会无法通过,会被作为代码漏洞 public interface BaseMapper<T> extends com.baomidou.mybatisplus.core.mapper.BaseMa

  • java中的equals()和toString()方法实例详解

    java中的equals()和toString()方法 , 这里写个小例子帮助大家学习理解此部分知识. /* 所有对象的父类Object Object中的方法: equals() 对象是否相同的比较方法 toString()对象的字符串表现形式 */ class Person { String name; int age; Person(String name, int age) { this.name = name; this.age = age; } } class ObjectDemo {

  • Vue中子组件调用父组件的3种方法实例

    目录 1.直接在子组件中通过“this.$parent.event”来调用父组件的方法. 2.子组件用“$emit”向父组件触发一个事件,父组件监听这个事件即可. 3.父组件把方法传入子组件中,在子组件里直接调用这个方法即可. 总结 Vue中子组件调用父组件的三种方法: 1.直接在子组件中通过“this.$parent.event”来调用父组件的方法. 父组件 <template> <div> <child></child> </div> <

随机推荐