使用mina2通信的完整代码朋友们可以去http://download.youkuaiyun.com/detail/u013378306/8756861下载
下面只对编解码协议进行解释
package lhy.charest;
import java.nio.ByteOrder;
import java.nio.charset.Charset;
import lhy.client_domain.MsgPack;
import org.apache.mina.core.buffer.IoBuffer;
import org.apache.mina.core.session.IoSession;
import org.apache.mina.filter.codec.CumulativeProtocolDecoder;
import org.apache.mina.filter.codec.ProtocolDecoderOutput;
/**
* @see 协议解码
* @author lhy
* @date
*/
public class MsgProtocolDecoder extends Cumul