码迷,mamicode.com
首页 > Web开发 > 详细

httpclient + TestNG 接口自动测试 第六章

时间:2015-02-12 12:19:59      阅读:1108      评论:0      收藏:0      [点我收藏+]

标签:

1.httpclient处理post提交xml格式数据请求

    public static void post(String HOST, String PATH, String reqXml) {

        // 创建httpClient实例
        CloseableHttpClient httpclient = HttpClients.createDefault();
        // 创建httppost
        HttpPost httppost = new HttpPost(getUrl(HOST, PATH));
        // 设置参数
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        params.add(new BasicNameValuePair("param", reqXml));
        try {
            httppost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));
            System.out.println(httppost.getURI());
            // 发送请求
            CloseableHttpResponse response = httpclient.execute(httppost);
            try {
                HttpEntity entity = response.getEntity();
                System.out.println(response.getStatusLine());
                if (entity != null) {
                    System.out
                            .println("--------------------------------------");
                    System.out.println("Response content: \r\n"
                            + EntityUtils.toString(entity, "UTF-8"));
                    System.out
                            .println("--------------------------------------");
                }
            } finally {
                response.close();
            }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (UnsupportedEncodingException e1) {
            e1.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            // 关闭连接
            try {
                httpclient.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    public static URI getUrl(String HOST, String PATH) {
        URI uri = null;
        try {
            uri = new URIBuilder().setScheme("http").setHost(HOST)
                    .setPath(PATH).build();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        }
        return uri;
    }

2.httpclient请求设置请求头

httpget.setHeader("channel_id", "1");

 

httpclient + TestNG 接口自动测试 第六章

标签:

原文地址:http://www.cnblogs.com/mayibanjiah/p/4287575.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!