get/post方式调用http接口

1549年前 (2015-11-13)java技术2922

 1. 项目环境如下:

myeclipse8.5 、tomcat5.0/weblogic、xp、JDK:开发1.5,编译1.4

为了方便,在原来的web项目UpDown中新建了一个httpcall包,用来保存http接口和调用的客户端。

image.png

 

 

 

2.准备需要的jar包

* commons-httpclient-3.0.jar
* commons-logging.jar
* commons-codec-1.3.jar

 

3.class&method

HttpClient

GetMethod

PostMethod

 

start

接口写了一个servlet来接收客户端get/post的请求

web.xml需要加入以下配置:

< !-- 模拟HTTP的调用,写的一个http接口 -->
   <servlet>
       <servlet-name>TestHTTPServer</servlet-name>
       <servlet-class>httpcall.TestHTTPServer</servlet-class>
   </servlet>
   <servlet-mapping>
       <servlet-name>TestHTTPServer</servlet-name>
       <url-pattern>/httpServer</url-pattern>
   </servlet-mapping>

 

TestHTTPServer.java的代码如下:

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;


public class TestHTTPServer  extends HttpServlet{
    
    private static final long serialVersionUID = 1L;

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setCharacterEncoding("gbk");

        PrintWriter out = response.getWriter();
        String param1 = request.getParameter("param1");
        out.println("param1=" + param1);
        String param2 = request.getParameter("param2");
        out.println("param2=" + param2);
        if (param1 == null || "".equals("param1") || param1.length() <= 0) {
            out.println("http call failed,参数param1不能为空,程序退出");
        } else if (param2 == null || "".equals("param2")
                || param2.length() <= 0) {
            out.println("http call failed,参数param2不能为空,程序退出");
        } else {
            out.println("---http call success---");
        }
        out.close();
    }

    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        this.doGet(request, response);
    }
}




HttpClientUtil.java的代码如下:

import java.io.IOException;
import org.apache.commons.httpclient.DefaultHttpMethodRetryHandler;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.params.HttpMethodParams;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;


public class HttpClientUtil {
    
    private static final Log log = LogFactory
    .getLog(HttpClientUtil.class);

    /**
     * get方式
     * @param param1
     * @param param2
     * @return
*/
    public static String getHttp(String param1,String param2){
        String responseMsg = "";

        // 1.构造HttpClient的实例
        HttpClient httpClient = new HttpClient();

        // 用于测试的http接口的url
        String url="http://localhost:8080/UpDown/httpServer?param1="+param1+"&param2="+param2;

        // 2.创建GetMethod的实例
        GetMethod getMethod = new GetMethod(url);

        // 使用系统系统的默认的恢复策略
        getMethod.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
                new DefaultHttpMethodRetryHandler());
        
        try {
            //3.执行getMethod,调用http接口
            httpClient.executeMethod(getMethod);

            //4.读取内容
            byte[] responseBody = getMethod.getResponseBody();
            
            //5.处理返回的内容
            responseMsg = new String(responseBody);
            log.info(responseMsg);
            
        } catch (HttpException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally{
            //6.释放连接
            getMethod.releaseConnection();
        }
        return responseMsg;
    }

    /**
     * post方式 
     * @param param1 
     * @param param2
     * @return
*/
    public static String postHttp(String param1,String param2) {
        String responseMsg = "";
        
        //1.构造HttpClient的实例
        HttpClient httpClient=new HttpClient();
        
        httpClient.getParams().setContentCharset("GBK");
        
        String url="http://localhost:8080/UpDown/httpServer";
        
        //2.构造PostMethod的实例
        PostMethod postMethod=new PostMethod(url);
        
        //3.把参数值放入到PostMethod对象中
//方式1:
/*        NameValuePair[] data = { new NameValuePair("param1", param1),
                new NameValuePair("param2", param2) };
        postMethod.setRequestBody(data);*/
        
        //方式2:    
        postMethod.addParameter("param1", param1);
        postMethod.addParameter("param2", param2);
        
        
        try {
            // 4.执行postMethod,调用http接口
            httpClient.executeMethod(postMethod);//200
            
//5.读取内容
            responseMsg = postMethod.getResponseBodyAsString().trim();
            log.info(responseMsg);
            
            //6.处理返回的内容

        } catch (HttpException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //7.释放连接
            postMethod.releaseConnection();
        }
        return responseMsg;
    }

    /**
     * 测试的main方法
     * @param args
*/
    public static void main(String[] args) {
    
        String param1="111";
        String param2="222";
        //get
//        System.out.println("get方式调用http接口\n"+getHttp(param1, param2));
        
//post
        System.out.println("post方式调用http接口\n"+postHttp(param1,param2));
    }
}


本文原创,转载必追究版权。

相关文章

org.tigris.subversion.javahl.ClientException:Attempted to lock an already-lo

 svn更新或提交是报错:org.tigris.subversion.javahl.ClientException:Attempted to lock an already-locked d...

 程序员的中秋礼物.......

程序员的中秋礼物.......

【小姐你好,我是程序员】“小姐你好,我是程序员。”女生礼貌地回答:“你好,程先生。”男:“……哦,叫我序员就可以了。”   【程序员的愿望】有一天一个程序员见到了上帝。上...

js限制input只能输入数字、英文、汉字

 1.只能输入数字和英文的:  <input onkeyup="value=value.replace(/[\W]/g,'') "...

Java 实现用户资料完整度的前端显示(或根据填写资料自动评分)

前端使用 Bootstrap 的进度条组件显示百分比,后台读取权重并计算信息完整度,并将计算的结果返回给前端,供页面显示。CSS1<link href="static/sc/...

java 实现自增编号+Oracle序列

原理:a,a++,fillStr(a, 9, false, "0");新建序列:create sequence seq_lineminvalue 1maxvalue 9999999...

jfinal 定时任务

1、去quartz官网下载 定时任务jar包(http://www.quartz-scheduler.org/)quartz-*.*.*.jar2、创建定时任务:public class SetAre...

评论列表

点我收录您
9年前 (2015-11-16)

我只会用asp php实现这个

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。