Netty客户端简易实现(http协议),Netty网络编程之客户端

前几天用Netty写了一个简单的服务端,点击进入Netty服务端,今天把相应的客户端实现一下。
上次忘了贴出maven依赖了,这次补上

        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-all</artifactId>
            <version>4.1.6.Final</version>
        </dependency>

代码一览

  • 客户端启动入口
import io.netty.bootstrap.Bootstrap;
import io.netty.channel.*;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioSocketChannel;
import io.netty.handler.codec.http.*;

import java.net.URI;
import java.net.URISyntaxException;


/**
 * @ClassName : NettyClient
 * @Description : netty客户端
 * @Author : 明心
 * @Date: 2021-01-23
 */
public class NettyClient {
    public static void main(String[] args) {
        final NetClientHandler netClientHandler = new NetClientHandler();
        EventLoopGroup group=new NioEventLoopGroup();
        Bootstrap client=new Bootstrap();
        client.group(group)
                .channel(NioSocketChannel.class)
                .option(ChannelOption.SO_KEEPALIVE,true)
                .handler(new ChannelInitializer<SocketChannel>() {
                    @Override
                    protected void initChannel(SocketChannel ch) throws Exception {
                        ChannelPipeline pipeline = ch.pipeline();
                        //包含编码器和解码器:
                        // pipeline.addLast(new HttpClientCodec())等价于new HttpRequestEncoder()  + new HttpResponseDecoder()
                        //request编码
                        pipeline.addLast(new HttpRequestEncoder())
                       //respon解码
                        .addLast(new HttpResponseDecoder())
                        .addLast(new HttpObjectAggregator(10240))

                        .addLast(netClientHandler);
                    }
                });
        try {
            ChannelFuture future = client.connect("localhost", 8080).sync();
            future.channel().writeAndFlush(httpParams()).sync();
            future.channel().closeFuture().sync();
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            group.shutdownGracefully();
        }
        //服务端返回的结果
        System.out.println("服务端返回的结果\n"+netClientHandler.getResponse());
    }

    /**
     * 构建FullHttpRequest 发送请求
     * @return
     * @throws URISyntaxException
     */
    private static FullHttpRequest httpParams() throws URISyntaxException {
        URI uri = new URI("?id=123");
        FullHttpRequest request = new DefaultFullHttpRequest(
                HttpVersion.HTTP_1_1,
                HttpMethod.GET,
                uri.toASCIIString());
        return request;
    }
}
  • 客户端业务逻辑处理
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
import io.netty.handler.codec.http.*;
import io.netty.util.CharsetUtil;

/**
* @ClassName : NetClientHandler
* @Description : netty客户端处理
* @Author : 明心
* @Date: 2021-01-23
*/
public class NetClientHandler extends ChannelInboundHandlerAdapter {

   private Object response;

   public Object getResponse(){
      return response;
   }

   @Override
   public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
       //用FullHttpResponse解析服务器返回来的信息
       FullHttpResponse res = (FullHttpResponse) msg;
       ByteBuf content = res.content();
       response=content.toString(CharsetUtil.UTF_8);
   }

   @Override
   public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
       cause.printStackTrace();
   }

}
  • 效果
    在这里插入图片描述
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
Netty客户端实现并发发送数据有多种方式,下面是其中两种常见的方式: 1. 使用线程池: - 创建一个线程池,例如`ExecutorService`。 - 在需要发送数据的地方,将发送逻辑封装成一个`Runnable`或`Callable`任务。 - 将任务提交给线程池执行,可以通过`execute()`方法提交`Runnable`任务,或者通过`submit()`方法提交`Callable`任务。 - 线程池会自动管理线程的创建和销毁,并发执行任务。 示例代码: ```java ExecutorService executorService = Executors.newFixedThreadPool(10); // 创建一个大小为10的线程池 // 循环发送数据 for (int i = 0; i < 10; i++) { final int index = i; executorService.execute(() -> { // 发送数据的逻辑 // ... System.out.println("Task " + index + " executed"); }); } executorService.shutdown(); // 关闭线程池 ``` 2. 使用Netty的EventLoopGroup: - 创建一个`NioEventLoopGroup`,它管理了一组NIO线程,用于处理I/O操作。 - 在需要发送数据的地方,通过调用`ChannelHandlerContext`的`writeAndFlush()`方法发送数据。 - 由于EventLoopGroup内部已经实现了并发处理,因此可以同时处理多个请求。 示例代码: ```java EventLoopGroup group = new NioEventLoopGroup(); try { Bootstrap bootstrap = new Bootstrap() .group(group) .channel(NioDatagramChannel.class) .handler(new ChannelInitializer<Channel>() { @Override protected void initChannel(Channel ch) throws Exception { // 添加处理器 } }); // 连接到服务器 Channel channel = bootstrap.connect(host, port).sync().channel(); // 循环发送数据 for (int i = 0; i < 10; i++) { channel.writeAndFlush(Unpooled.copiedBuffer("data", CharsetUtil.UTF_8)); } // 等待关闭连接 channel.closeFuture().sync(); } finally { group.shutdownGracefully(); } ``` 这两种方式都可以实现Netty客户端的并发发送数据,具体选择哪种方式取决于你的需求和场景。使用线程池可以更灵活地控制并发度,而使用EventLoopGroup则更符合Netty的设计思想。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值