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

Unirest-拼装http请求发送rest接口

时间:2016-04-14 12:19:54      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

public static Integer getInfo(String name) {
        HttpResponse<Integer> httpResponse = null;
        try {
            httpResponse = Unirest.get(url) //url网址
                                    .queryString("sn", serialNumber) //查询参数
                                    .asObject(Integer.class); //返回类型
        } catch (UnirestException e) {
            logger.error(e.getMessage());
            return null;
        }
        if (null == httpResponse || 200 != httpResponse.getStatus()) {
            return null;
        }
        return httpResponse.getBody();
    }

 

Unirest-拼装http请求发送rest接口

标签:

原文地址:http://www.cnblogs.com/guochunyi/p/5390319.html

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