java Http请求post与get请求方式
程序员文章站
2022-04-15 12:35:40
...
import org.apache.http.client.fluent.Form;
import org.apache.http.client.fluent.Request;
import org.apache.http.client.fluent.Response;
import java.io.IOException;
/**
* 访问API接口通用的做法。
* 主要使用apache提供的一个便捷工具类,http.client.fluent
* 访问API接口的时候首先涉及到登陆,那就首先登陆
* 然后开始CRUD操作,涉及Get和Post请求两种请求方式
*
* */
public class HttpRequest {
public static void main(String[] args) throws IOException {
//1、登陆
Response res = Request.Post("http://192.168.253.3:8081")
.bodyForm(Form.form()
.add("action", "login")
.add("username", "azkaban")
.add("password", "azkaban").build())
.execute();
//2、Get方式请求 并 获取返回值
String str2 = "http://192.168.253.3:8081/manager?ajax=fetchProjectLogs&project=my_test&session.id=";
Request get = Request.Get(str2);
Response execute = get.execute();
String content = execute.returnContent().toString();
System.out.println(content);
//3、Post方式请求并返回值
Response execute1 = Request.Post("http://192.168.253.3:8081/manager")
.bodyForm(Form.form()
.add("action", "create")
.add("session.id", "")
.add("name", "test_jjk")
.add("description", "xixi").build()).execute();
String s = execute1.returnContent().toString();
System.out.println(s);
//Post访问
Request res1 = Request.Post("http://192.168.253.3:8081/manager")
.bodyForm(Form.form()
.add("session.id", "")
.add("action", "create")
.add("name", "my_test2")
.add("description", "haha").build());
res1.execute();
//Get访问
String str = "http://192.168.253.3:8081/manager?delete=true&project=my_test2&session.id=";
Request.Get(str).execute();
}
}
}
================================下面示例对应上面的代码=======================================
get请求示例: 其实就是拼接字符串,按上面的要求
post请求: 把请求体放在一个地方,然后执行
上一篇: 正则表达式资源
推荐阅读
-
Linux下模拟http的get/post请求(curl or wget)详解
-
python通过get,post方式发送http请求和接收http响应的方法
-
postman的安装与使用方法(模拟Get和Post请求)
-
使用PHP Socket 编程模拟Http post和get请求
-
关于Ajax的get与post浅分析,同步请求与异步请求;
-
MVC 5限制所有HTTP请求必须是POST方式
-
JAVA发送HTTP请求的四种方式总结
-
Android发送GET与POST请求的DEMO详解
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
Vue resource中的GET与POST请求的实例代码