【Java】Post和Get接口测试

Get参数可以直接写入RestFul

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
public static String Get(String url, String token, String parameter) {
    CloseableHttpClient httpClient = HttpClients.createDefault();
    String entityStr = null;
    CloseableHttpResponse response = null;
    try {
        URIBuilder uriBuilder = new URIBuilder(url);
        List<NameValuePair> list = new LinkedList<>();
        BasicNameValuePair param1 = new BasicNameValuePair("parameter", parameter);
        list.add(param1);
        uriBuilder.setParameters(list);
        HttpGet httpGet = new HttpGet(uriBuilder.build());
        httpGet.addHeader("Content-Type", "application/json");
        httpGet.addHeader("authorization", token);
        response = httpClient.execute(httpGet);
        HttpEntity entity = response.getEntity();
        entityStr = EntityUtils.toString(entity, "UTF-8");
        System.out.println(entityStr);
    } catch (ClientProtocolException e) {
        System.err.println("Http协议出现问题");
        e.printStackTrace();
    } catch (ParseException e) {
        System.err.println("解析错误");
        e.printStackTrace();
    } catch (URISyntaxException e) {
        System.err.println("URI解析异常");
        e.printStackTrace();
    } catch (IOException e) {
        System.err.println("IO异常");
        e.printStackTrace();
    } finally {
        if (null != response) {
            try {
                response.close();
                httpClient.close();
            } catch (IOException e) {
                System.err.println("释放连接出错");
                e.printStackTrace();
            }
        }
    }
    return entityStr;
}

 

Post需要单独区分body和rest参数的位置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public static String Post(String url, String token, ImmutableMap<Object, Object> parameter) {
    CloseableHttpClient httpClient = HttpClients.createDefault();
    String entityStr = null;
    CloseableHttpResponse response = null;
    try {
        HttpPost httpPost = new HttpPost(url);
        httpPost.addHeader("Authorization", token);
        StringEntity requestBody = new StringEntity(JSON.toJSONString(parameter));
        requestBody.setContentType("application/json");
        requestBody.setContentEncoding(StandardCharsets.UTF_8.name());
        httpPost.setEntity(requestBody);
        response = httpClient.execute(httpPost);
        HttpEntity entity = response.getEntity();
        entityStr = EntityUtils.toString(entity, "UTF-8");
    } catch (ClientProtocolException e) {
        System.err.println("Http协议出现问题");
        e.printStackTrace();
    } catch (ParseException e) {
        System.err.println("解析错误");
        e.printStackTrace();
    } catch (IOException e) {
        System.err.println("IO异常");
        e.printStackTrace();
    } finally {
        if (null != response) {
            try {
                response.close();
                httpClient.close();
            } catch (IOException e) {
                System.err.println("释放连接出错");
                e.printStackTrace();
            }
        }
    }
    return entityStr;
}