Android 使用netty框架实现socket通信

本文介绍了如何在Android应用中使用Netty框架建立socket连接,通过CmdPipelineFactory配置管道,并利用CmdDecoder解析通信协议,实现高效稳定的网络通信。

1.建立socket连接

public class CmdClient {
	private ClientBootstrap bootstrap;
	private ChannelFuture channelFuture;
	private Channel channel;
	private static final CmdClient client = new CmdClient(); //单例实现,用来取channel
	private CmdClient(){
		
	}
	
	public static CmdClient getInstance(){
		return client;
	}
	
	public Channel getChannel() {
		return channel;
	}
 
	public void setChannel(Channel channel) {
		this.channel = channel;
	}
 
	public ClientBootstrap getBootstrap() {
		return bootstrap;
	}
 
	public void setBootstrap(ClientBootstrap bootstrap) {
		this.bootstrap = bootstrap;
	}
 
	public ChannelFuture getChannelFuture() {
		return channelFuture;
	}
 
	public void setChannelFuture(ChannelFuture channelFuture) {
		this.channelFuture = channelFuture;
	}
 
	public int start(String ip,int port) {
		System.setProperty("java.net.preferIPv4Stack", "true");
		System.setProperty("java.net.preferIPv6Addresses", "false");
		bootstrap = new ClientBootstrap(new NioClientSocketChannelFactory(
				Executors.newCachedThreadPool(),
				Executors.newCachedThreadPool()));
		bootstrap.setPipelineFactory(new CmdPipelineFactory());
		bootstrap.setOption("tcpNoDelay", true);
		bootstrap.setOption("keepAlive", true);
		channelFuture = bootstrap.connect(new InetSocketAddress(ip, port));
		channelFuture.awaitUninterruptibly();
		channel = channelFuture.awaitUninterruptibly().getChannel();
		return 1;
	}
 
	public void stop() {
		channelFuture.awaitUninterruptibly();
		if (!channelFuture.isSuccess()) {
			channelFuture.getCause().printStackTrace();
		}
		channelFuture.getChannel().getCloseFuture().awaitUninterruptibly();
		bootstrap.releaseExternalResources();
	}

2.CmdPipelineFactory:

public class CmdPipelineFactory implements ChannelPipelineFactory {
	@Override
	public ChannelPipeline getPipeline() throws Exception {
		ChannelPipeline pipeline = Channels.pipeline();
		pipeline.addLast("cmdDecoder", new CmdDecoder());
		pipeline.addLast("handler", new CmdClientHandler());
		return pipeline;
	}
	
}

3.引入CmdDecoder用来解析协议

public class CmdDecoder extends FrameDecoder {
@Override
protected Object decode(ChannelHandlerContext ctx, Channel channel,
        ChannelBuffer buffer) throws Exception {
    if (buffer.readableBytes() < 1) {
        return null;
    }
    buffer.markReaderIndex();
    ChannelBuffer magicBuff = buffer.readBytes(1);
    int magic = DataConvert.byteArrayToSignedInt(magicBuff
            .array());
    if (magic == 0x77) {
        if (buffer.readableBytes() < 19) {
            return null;
        }
        buffer.markReaderIndex();
        ChannelBuffer lenBuff = buffer.readBytes(19);
        PacketParse parse = new PacketParse(null);
        byte[] lenByte = parse.getPackForTwoByte(lenBuff.array(), 17, 2);
        int len = DataConvert.byteArrayToSignedInt(lenByte);
        if (buffer.readableBytes() < len) {
            buffer.resetReaderIndex();
            return null;
        }
        ChannelBuffer frame = buffer.readBytes(len);
        return frame;
    }
    buffer.clear();
    return null;
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值