java发送get-post请求

GET

import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

public class httpGet_Test {
    public static void main(String[] args) throws Exception {
        //定义一个HttpClient对象
        CloseableHttpClient httpClient = HttpClients.createDefault();
        //设置请求地址
        URIBuilder uriBuilder = new URIBuilder("http://localhost:8080/jwd/get");
        //设置参数
        uriBuilder.setParameter("jd","33");
        uriBuilder.setParameter("wd","232");
        //创建HttpGet对象 设置url访问地址
        HttpGet httpGet = new HttpGet(uriBuilder.build());
        //打印出请求信息
        System.out.println("::"+httpGet);
        CloseableHttpResponse response = null;
        //使用httpClient发起请求,获取resposen
        response = httpClient.execute(httpGet);
        //判断状态
        if(response.getStatusLine().getStatusCode() == 200){
            //获取返回的信息
            String content = EntityUtils.toString(response.getEntity(), "utf8");
            System.out.println(content);
        }
    }
}

POST

import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;


public class httpPost_Test {
    public static void main(String[] args) throws Exception {
        //定义一个HttpClient对象
        CloseableHttpClient httpClient = HttpClients.createDefault();
        //设置请求地址
        URIBuilder uriBuilder = new URIBuilder("http://localhost:8080/jwd/getp");
        //设置参数
        uriBuilder.setParameter("jd","jd12");
        uriBuilder.setParameter("wd","wd66");
        //HttpPost 设置url访问地址
        HttpPost httpPostt = new HttpPost(uriBuilder.build());
        //打印出请求信息
        System.out.println("::"+httpPostt);
        CloseableHttpResponse response = null;
        //使用httpClient发起请求,获取resposen
        response = httpClient.execute(httpPostt);
        //判断状态
        if(response.getStatusLine().getStatusCode() == 200){
            //获取返回的信息
            String content = EntityUtils.toString(response.getEntity(), "utf8");
            System.out.println(content);
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值