首页 > 编程语言 > 详细

Java调用Http接口(5)--HttpAsyncClient调用Http接口

时间:2019-11-27 12:53:52      阅读:108      评论:0      收藏:0      [点我收藏+]

HttpAsyncClient是HttpClient的异步版本,提供异步调用的api。文中所使用到的软件版本:Java 1.8.0_191、HttpClient 4.1.4。

1、服务端

参见Java调用Http接口(1)--编写服务端 

2、调用

2.1、GET请求

public static void get() {
    CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
    try {
        httpClient.start();
        String requestPath = "http://localhost:8080/webframe/demo/test/getUser?userId=1000&userName=" + URLEncoder.encode("李白", "utf-8");
        HttpGet get = new HttpGet(requestPath);
        Future<HttpResponse> future = httpClient.execute(get, null);
        HttpResponse response = future.get();
        System.out.println("GET返回状态:" + response.getStatusLine());
        HttpEntity responseEntity = response.getEntity();
        System.out.println("GET返回结果:" + EntityUtils.toString(responseEntity));
        
        //回调方式调用
        final CountDownLatch latch = new CountDownLatch(1);
        final HttpGet get2 = new HttpGet(requestPath);
        httpClient.execute(get2, new FutureCallback<HttpResponse>() {
            public void completed(final HttpResponse response) {
                latch.countDown();
                System.out.println("GET(回调方式)返回状态:" + response.getStatusLine());
                try {
                    System.out.println("GET(回调方式)返回结果:" + EntityUtils.toString(response.getEntity()));
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            public void failed(final Exception e) {
                latch.countDown();
                e.printStackTrace();
            }
            public void cancelled() {
                latch.countDown();
                System.out.println("cancelled");
            }

        });
        latch.await();
        
        //流方式调用
        final CountDownLatch latch2 = new CountDownLatch(1);
        final HttpGet get3 = new HttpGet(requestPath);
        HttpAsyncRequestProducer producer3 = HttpAsyncMethods.create(get3);
        AsyncCharConsumer<HttpResponse> consumer3 = new AsyncCharConsumer<HttpResponse>() {
            HttpResponse response;
            @Override
            protected void onResponseReceived(final HttpResponse response) {
                this.response = response;
            }
            @Override
            protected void releaseResources() {
            }
            @Override
            protected HttpResponse buildResult(final HttpContext context) {
                return this.response;
            }
            @Override
            protected void onCharReceived(CharBuffer buf, IOControl arg1) throws IOException {
                System.out.println("GET(流方式)返回结果:" + buf.toString());
            }
        };
        httpClient.execute(producer3, consumer3, new FutureCallback<HttpResponse>() {
            public void completed(final HttpResponse response) {
                latch2.countDown();
                System.out.println("GET(流方式)返回状态:" + response.getStatusLine());
            }
            public void failed(final Exception e) {
                latch2.countDown();
                e.printStackTrace();
            }
            public void cancelled() {
                latch2.countDown();
                System.out.println("cancelled");
            }
        });
        latch2.await();
        
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
    }
}

2.2、POST请求(发送键值对数据)

public static void post() {
    CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
    try {
        httpClient.start();
        String requestPath = "http://localhost:8080/webframe/demo/test/getUser";
        HttpPost post = new HttpPost(requestPath);
        
        List<NameValuePair> list = new ArrayList<NameValuePair>();
        list.add(new BasicNameValuePair("userId", "1000"));
        list.add(new BasicNameValuePair("userName", "李白"));
        post.setEntity(new UrlEncodedFormEntity(list, "utf-8"));
        
        Future<HttpResponse> future = httpClient.execute(post, null);
        HttpResponse response = future.get();
        System.out.println("POST返回状态:" + response.getStatusLine());
        HttpEntity responseEntity = response.getEntity();
        System.out.println("POST返回结果:" + EntityUtils.toString(responseEntity));
        
        //回调方式和流方式调用类似
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
    }
}

2.3、POST请求(发送JSON数据)

public static void post2() {
    CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
    try {
        httpClient.start();
        String requestPath = "http://localhost:8080/webframe/demo/test/addUser";
        HttpPost post = new HttpPost(requestPath);
        post.setHeader("Content-type", "application/json");
        String param = "{\"userId\": \"1001\",\"userName\":\"杜甫\"}";
        post.setEntity(new StringEntity(param, "utf-8"));
        
        Future<HttpResponse> future = httpClient.execute(post, null);
        HttpResponse response = future.get();
        System.out.println("POST json返回状态:" + response.getStatusLine());
        HttpEntity responseEntity = response.getEntity();
        System.out.println("POST josn返回结果:" + EntityUtils.toString(responseEntity));
        
        //回调方式和流方式调用类似
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
    }
}

2.4、上传文件

public static void upload() {
    CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
    try {
        httpClient.start();
        String requestPath = "http://localhost:8080/webframe/demo/test/upload";
        ZeroCopyPost producer = new ZeroCopyPost(requestPath, new File("d:/a.jpg"), ContentType.create("text/plain"));
        AsyncCharConsumer<HttpResponse> consumer = new AsyncCharConsumer<HttpResponse>() {
            HttpResponse response;
            @Override
            protected void onResponseReceived(final HttpResponse response) {
                this.response = response;
            }
            @Override
            protected void releaseResources() {
            }
            @Override
            protected HttpResponse buildResult(final HttpContext context) {
                return this.response;
            }
            @Override
            protected void onCharReceived(CharBuffer buf, IOControl arg1) throws IOException {
                System.out.println("upload返回结果:" + buf.toString());
            }
        };
        Future<HttpResponse> future = httpClient.execute(producer, consumer, null);
        HttpResponse response = future.get();
        System.out.println("upload返回状态:" + response.getStatusLine());
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
    }
}

2.5、下载文件

public static void download() {
    CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
    try {
        httpClient.start();
        String requestPath = "http://localhost:8080/webframe/demo/test/download";
        HttpGet get = new HttpGet(requestPath);
        HttpAsyncRequestProducer producer = HttpAsyncMethods.create(get);
        File download = new File("d:/temp/download_" + System.currentTimeMillis() + ".jpg");
        ZeroCopyConsumer<File> consumer = new ZeroCopyConsumer<File>(download) {
              @Override
              protected File process(final HttpResponse response, final File file, final ContentType contentType) throws Exception {
                  if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
                      throw new ClientProtocolException("Upload failed: " + response.getStatusLine());
                  }
                  return file;
              }
          };
        Future<File> future = httpClient.execute(producer, consumer, null);
        System.out.println("download文件大小:" + future.get().length());
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
    }
}

2.6、完整例子

技术分享图片
package com.inspur.demo.http;

import java.io.File;
import java.io.IOException;
import java.net.URLEncoder;
import java.nio.CharBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Future;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.concurrent.FutureCallback;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.nio.client.CloseableHttpAsyncClient;
import org.apache.http.impl.nio.client.HttpAsyncClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.nio.IOControl;
import org.apache.http.nio.client.methods.AsyncCharConsumer;
import org.apache.http.nio.client.methods.HttpAsyncMethods;
import org.apache.http.nio.client.methods.ZeroCopyConsumer;
import org.apache.http.nio.client.methods.ZeroCopyPost;
import org.apache.http.nio.protocol.HttpAsyncRequestProducer;
import org.apache.http.protocol.HttpContext;
import org.apache.http.util.EntityUtils;

/**
 * 通过HttpClient调用Http接口
 *
 */
public class HttpAsyncClientCase {
    /**
     *  GET请求
     */
    public static void get() {
        CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
        try {
            httpClient.start();
            String requestPath = "http://localhost:8080/webframe/demo/test/getUser?userId=1000&userName=" + URLEncoder.encode("李白", "utf-8");
            HttpGet get = new HttpGet(requestPath);
            Future<HttpResponse> future = httpClient.execute(get, null);
            HttpResponse response = future.get();
            System.out.println("GET返回状态:" + response.getStatusLine());
            HttpEntity responseEntity = response.getEntity();
            System.out.println("GET返回结果:" + EntityUtils.toString(responseEntity));
            
            //回调方式调用
            final CountDownLatch latch = new CountDownLatch(1);
            final HttpGet get2 = new HttpGet(requestPath);
            httpClient.execute(get2, new FutureCallback<HttpResponse>() {
                public void completed(final HttpResponse response) {
                    latch.countDown();
                    System.out.println("GET(回调方式)返回状态:" + response.getStatusLine());
                    try {
                        System.out.println("GET(回调方式)返回结果:" + EntityUtils.toString(response.getEntity()));
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
                public void failed(final Exception e) {
                    latch.countDown();
                    e.printStackTrace();
                }
                public void cancelled() {
                    latch.countDown();
                    System.out.println("cancelled");
                }

            });
            latch.await();
            
            //流方式调用
            final CountDownLatch latch2 = new CountDownLatch(1);
            final HttpGet get3 = new HttpGet(requestPath);
            HttpAsyncRequestProducer producer3 = HttpAsyncMethods.create(get3);
            AsyncCharConsumer<HttpResponse> consumer3 = new AsyncCharConsumer<HttpResponse>() {
                HttpResponse response;
                @Override
                protected void onResponseReceived(final HttpResponse response) {
                    this.response = response;
                }
                @Override
                protected void releaseResources() {
                }
                @Override
                protected HttpResponse buildResult(final HttpContext context) {
                    return this.response;
                }
                @Override
                protected void onCharReceived(CharBuffer buf, IOControl arg1) throws IOException {
                    System.out.println("GET(流方式)返回结果:" + buf.toString());
                }
            };
            httpClient.execute(producer3, consumer3, new FutureCallback<HttpResponse>() {
                public void completed(final HttpResponse response) {
                    latch2.countDown();
                    System.out.println("GET(流方式)返回状态:" + response.getStatusLine());
                }
                public void failed(final Exception e) {
                    latch2.countDown();
                    e.printStackTrace();
                }
                public void cancelled() {
                    latch2.countDown();
                    System.out.println("cancelled");
                }
            });
            latch2.await();
            
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
        }
    }
    
    /**
     *  POST请求(发送键值对数据)
     */
    public static void post() {
        CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
        try {
            httpClient.start();
            String requestPath = "http://localhost:8080/webframe/demo/test/getUser";
            HttpPost post = new HttpPost(requestPath);
            
            List<NameValuePair> list = new ArrayList<NameValuePair>();
            list.add(new BasicNameValuePair("userId", "1000"));
            list.add(new BasicNameValuePair("userName", "李白"));
            post.setEntity(new UrlEncodedFormEntity(list, "utf-8"));
            
            Future<HttpResponse> future = httpClient.execute(post, null);
            HttpResponse response = future.get();
            System.out.println("POST返回状态:" + response.getStatusLine());
            HttpEntity responseEntity = response.getEntity();
            System.out.println("POST返回结果:" + EntityUtils.toString(responseEntity));
            
            //回调方式和流方式调用类似
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
        }
    }
    
    /**
     *  POST请求(发送json数据)
     */
    public static void post2() {
        CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
        try {
            httpClient.start();
            String requestPath = "http://localhost:8080/webframe/demo/test/addUser";
            HttpPost post = new HttpPost(requestPath);
            post.setHeader("Content-type", "application/json");
            String param = "{\"userId\": \"1001\",\"userName\":\"杜甫\"}";
            post.setEntity(new StringEntity(param, "utf-8"));
            
            Future<HttpResponse> future = httpClient.execute(post, null);
            HttpResponse response = future.get();
            System.out.println("POST json返回状态:" + response.getStatusLine());
            HttpEntity responseEntity = response.getEntity();
            System.out.println("POST josn返回结果:" + EntityUtils.toString(responseEntity));
            
            //回调方式和流方式调用类似
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
        }
    }
    
    /**
     * 上传文件
     */
    public static void upload() {
        CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
        try {
            httpClient.start();
            String requestPath = "http://localhost:8080/webframe/demo/test/upload";
            ZeroCopyPost producer = new ZeroCopyPost(requestPath, new File("d:/a.jpg"), ContentType.create("text/plain"));
            AsyncCharConsumer<HttpResponse> consumer = new AsyncCharConsumer<HttpResponse>() {
                HttpResponse response;
                @Override
                protected void onResponseReceived(final HttpResponse response) {
                    this.response = response;
                }
                @Override
                protected void releaseResources() {
                }
                @Override
                protected HttpResponse buildResult(final HttpContext context) {
                    return this.response;
                }
                @Override
                protected void onCharReceived(CharBuffer buf, IOControl arg1) throws IOException {
                    System.out.println("upload返回结果:" + buf.toString());
                }
            };
            Future<HttpResponse> future = httpClient.execute(producer, consumer, null);
            HttpResponse response = future.get();
            System.out.println("upload返回状态:" + response.getStatusLine());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
        }
    }
    
    /**
     * 下载文件
     */
    public static void download() {
        CloseableHttpAsyncClient httpClient = HttpAsyncClients.createDefault();
        try {
            httpClient.start();
            String requestPath = "http://localhost:8080/webframe/demo/test/download";
            HttpGet get = new HttpGet(requestPath);
            HttpAsyncRequestProducer producer = HttpAsyncMethods.create(get);
            File download = new File("d:/temp/download_" + System.currentTimeMillis() + ".jpg");
            ZeroCopyConsumer<File> consumer = new ZeroCopyConsumer<File>(download) {
                @Override
                protected File process(final HttpResponse response, final File file, final ContentType contentType) throws Exception {
                    if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
                        throw new ClientProtocolException("Upload failed: " + response.getStatusLine());
                    }
                    return file;
                }
            };
            Future<File> future = httpClient.execute(producer, consumer, null);
            System.out.println("download文件大小:" + future.get().length());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {httpClient.close();} catch (IOException e) {e.printStackTrace();}
        }
    }
    
    public static void main(String[] args) {
        get();
        post();
        post2();
        upload();
        download();
    }
}
View Code

 

Java调用Http接口(5)--HttpAsyncClient调用Http接口

原文:https://www.cnblogs.com/wuyongyin/p/11940562.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!