java实现post类型接口的调用

(一)相关jar包坐标

		<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.5.2</version>
		</dependency>

(二)编写代码

/**
 * json格式提交参数
 * @param uri 接口地址
 * @param params 
 */
	public static void doJsonPost(String uri, String params) {
		// 创建一个post请求
		HttpPost post = new HttpPost(uri);
		post.setHeader("X-Lemonban-Media-Type", "lemonban.v1");
		post.setHeader("Content-Type", "application/json");
		try {
			// 设置参数
			post.setEntity(new StringEntity(params, "utf-8"));
			// 创建客户端
			HttpClient httpClient = HttpClients.createDefault();
			// 发送请求
			HttpResponse response = httpClient.execute(post);
			getCodeAndResult(response);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	/**
	 * 表单方式提交uri
	 * @param uri uri地址
	 * @param params  请求参数
	 */
	public static void doFormPost(String uri, String params) {
		// 创建一个post请求
		HttpPost post = new HttpPost(uri);
		post.setHeader("X-Lemonban-Media-Type", "lemonban.v1");
		post.setHeader("Content-Type", "application/x-www-form-urlencoded");
		try {
			// 设置参数
			post.setEntity(new StringEntity(params, "utf-8"));
			// 创建客户端
			HttpClient httpClient = HttpClients.createDefault();
			// 发送请求
			HttpResponse response = httpClient.execute(post);
			getCodeAndResult(response);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

		/**
	 * 根据响应结果获取状态码和body
	 * 
	 * @param response 响应结果
	 * @throws IOException
	 */
	private static void getCodeAndResult(HttpResponse response) throws IOException {
		// 获取状态码
		int code = response.getStatusLine().getStatusCode();
		System.out.println(code);
		// 获取body
		String result = EntityUtils.toString(response.getEntity());
		System.out.println(result);
	}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值