mina粘包、多包和少包的解决方法 (转)

mina粘包、多包和少包的解决方法 (转)
原文地址:http://freemart.iteye.com/blog/836654

使用过mina的同学应该都遇到到过,在解码时少包、多包的问题,查阅了很多资料还是迷迷糊糊的,经过

不懈努力,终于解决了。原来解决方法是那样的简单。废话少说,请看列子。
  
   另外建了一个交流群:19702042,大家可以在线交流

   问题:我发送的是xml字符串数据,在发送数据后,接收方在解码的时候可能接到1条,也可能是多条,还

可能是半条或一条半,解决方法就是使用CumulativeProtocolDecoder

   首先,在编码的时候要把前4位设成标志位,标志消息内容的长度。里面的重点是doDecode的返回值,一

定要继承CumulativeProtocolDecoder 哦。

  清看decode的写法
public class AsResponseDecoder extends CumulativeProtocolDecoder {
private static Logger LOG = LoggerFactory.getLogger(AsResponseDecoder.class);
private final Charset charset;

public AsResponseDecoder(Charset charset){
  this.charset = charset;
}

/**
  * 这个方法的返回值是重点:
  * 1、当内容刚好时,返回false,告知父类接收下一批内容
  * 2、内容不够时需要下一批发过来的内容,此时返回false,这样父类
CumulativeProtocolDecoder
  *    会将内容放进IoSession中,等下次来数据后就自动拼装再交给本类的doDecode
  * 3、当内容多时,返回true,因为需要再将本批数据进行读取,父类会将剩余的数据再次推送本
类的doDecode
  */
public boolean doDecode(IoSession session, IoBuffer in,
   ProtocolDecoderOutput out) throws Exception {
 
  CharsetDecoder cd = charset.newDecoder();
  if(in.remaining() > 0){//有数据时,读取4字节判断消息长度
   byte [] sizeBytes = new byte[4];
   in.mark();//标记当前位置,以便reset
   in.get(sizeBytes);//读取前4字节
                        //NumberUtil是自己写的一个int转byte[]的一个工具类
   int size = NumberUtil.byteArrayToInt(sizeBytes);
   //如果消息内容的长度不够则直接返回true
   if(size > in.remaining()){//如果消息内容不够,则重置,相当于不读取size
    in.reset();
    return false;//接收新数据,以拼凑成完整数据
   } else{
    byte[] bytes = new byte[size];
    in.get(bytes, 0, size);
    String xmlStr = new String(bytes,"UTF-8");
    System.out.println("------------"+xmlStr);
    if(null != xmlStr && xmlStr.length() > 0){
     AsResponse resCmd = new AsResponse();
     AsXmlPacker.parse(resCmd, xmlStr);
     if(resCmd != null){
      out.write(resCmd);
     }
    }
    if(in.remaining() > 0){//如果读取内容后还粘了包,就让父类再给俺
一次,进行下一次解析
     return true;
    }
   }
  }
  return false;//处理成功,让父类进行接收下个包
}

}

下面附上Encode类
public class AsResponseEncoder extends ProtocolEncoderAdapter {
private final Charset charset;

public AsResponseEncoder(Charset charset){
  this.charset = charset;
}

public void encode(IoSession session, Object message,
  ProtocolEncoderOutput out) throws Exception {
  CharsetEncoder ce = charset.newEncoder();
  IoBuffer buffer = IoBuffer.allocate(100).setAutoExpand(true);
 
  AsResponse respCmd = (AsResponse) message;
 
  String xml = AsXmlPacker.pack(respCmd);//将对象转成xml
  byte[] bytes = xml.getBytes();
  byte[] sizeBytes = NumberUtil.intToByteArray(bytes.length);
 
  buffer.put(sizeBytes);//将前4位设置成数据体的字节长度
  buffer.put(bytes);//消息内容
  buffer.flip();
  out.write(buffer);
}

}

原文转述完毕、在原文中缺少三个类没有贴出代码、现在我将自己的实现补充在这里
其一 :字节与整数的转换NumberUtil.java
public class NumberUtil {
    public static byte[] intToByte(int i) {
        byte[] abyte0 = new byte[4];
        abyte0[0] = (byte) (0xff & i);
        abyte0[1] = (byte) ((0xff00 & i) >> ;
        abyte0[2] = (byte) ((0xff0000 & i) >> 16);
        abyte0[3] = (byte) ((0xff000000 & i) >> 24);
        return abyte0;
    }
    public  static int bytesToInt(byte[] bytes) {
        int addr = bytes[0] & 0xFF;
        addr |= ((bytes[1] << & 0xFF00);
        addr |= ((bytes[2] << 16) & 0xFF0000);
        addr |= ((bytes[3] << 24) & 0xFF000000);
        return addr;
    }

}
其二:对象与xml的相互转换XmlPacker.java
public class XmlPacker {
public XmlPacker(){}
public static void parse(MessageBag msg,String xml){
  XStream xstream = new XStream(new DomDriver()); // does not require XPP3 library
  xstream.fromXML(xml,msg);
}
public static String pack(MessageBag msg){
  XStream xstream = new XStream(new DomDriver()); // does not require XPP3 library
  String xml = xstream.toXML(msg);
  return xml;
}
}

猜你喜欢

转载自spark8090.iteye.com/blog/1569564