定长消息报文的组包与解包简单封装(Java实现)

报文 组包 解包

  • 在实际项目中经常会碰到不同系统之间的数据交换,有些是用webservice。有些则是使用发socket消息的方式,将需要发送的消息组装成特定格式的字符串或Xml格式的文件,再通过socket编程发送到对方系统。本文主要讨论组装成定长字符串。
  • 抽象任何一个定长消息包(MsgPackage)都是由一个或多个消息片(MsgPiece)组成。任何一个消息片都是由一个或多个消息域(MsgField)组成。消息域的属性有:域名、长度、值、如果值的长度小于定义的最大长度那值是靠左还是右对齐其余的是用什么字符填充。

工具代码

消息域类

package socket.msg;

/**
 * 消息域
 * @author Zhenwei.Zhang (2013-9-25)
 */
public class MsgField {
    
    public MsgField (String name, int length, char fillChar, FillSide fillSide) {
        this.name = name;
        this.length = length;
        this.fillChar = fillChar;
        this.fillSide = fillSide;
    }
    
    /**
     * 填充位置
     * @author Zhenwei.Zhang (2013-9-25)
     */
    public enum FillSide {
        LEFT, RIGHT
    }

    /** 域名称 */
    private String name;
    /** 长度 */
    private int length;
    /** 填充字符 */
    private char fillChar;
    /** 填充位置 */
    private FillSide fillSide;
    
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getLength() {
        return length;
    }

    public void setLength(int length) {
        this.length = length;
    }

    public char getFillChar() {
        return fillChar;
    }

    public void setFillChar(char fillChar) {
        this.fillChar = fillChar;
    }

    public FillSide getFillSide() {
        return fillSide;
    }

    public void setFillSide(FillSide fillSide) {
        this.fillSide = fillSide;
    }

}

报文消息片类

package socket.msg;

import java.beans.PropertyDescriptor;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Method;
import java.util.LinkedList;
import java.util.List;

import socket.msg.MsgField.FillSide;

/**
 * 消息片,由多个消息域按一定的顺序组成
 * @author Zhenwei.Zhang (2013-9-25)
 */
public abstract class MsgPiece {
    
    /** 消息域列表 */
    private List<MsgField> itemList = new LinkedList<MsgField>();
    
    public MsgPiece(MsgField[] items) {
        itemList = new LinkedList<MsgField>();
        for (int i = 0; i < items.length; i++) {
            itemList.add(items[i]);
        }
    }
    
    /**
     * 组消息
     * @author Zhenwei.Zhang (2013-9-25)
     * @param charsetName
     * @return
     * @throws Exception
     */
    public byte[] pack(String charsetName) throws Exception {
        StringBuffer result = new StringBuffer();
        byte[] b = null;
        try {
            for (MsgField item : itemList) {
                PropertyDescriptor pd = new PropertyDescriptor(item.getName(), this.getClass());
                Method readMethod = pd.getReadMethod();
                Object gotVal = readMethod.invoke(this);
                String strFill = gotVal == null ? "" : gotVal.toString();
                result.append(this.autoFill(strFill, item.getFillChar(), item.getFillSide(), item.getLength(), charsetName));
            }
            b = result.toString().getBytes(charsetName);
        } catch (Exception e) {
            throw new Exception("组消息出错:" + e.getMessage(), e);
        }
        
        return b;
    }
    
    /**
     * 解消息
     * @author Zhenwei.Zhang (2013-9-25)
     * @param msg
     * @param charsetName
     * @throws Exception
     */
    public void unPack(byte[] msg, String charsetName) throws Exception {
        if (msg.length != this.getLength()) {
            throw new Exception("解消息出错,消息长度不合法!");
        }
        
        int index = 0;
        try {
            for (MsgField item : itemList) {
                String value = new String(msg, index, item.getLength(), charsetName);
                value = this.getRealVal(value, item.getFillSide(), item.getFillChar());
                
                PropertyDescriptor pd = new PropertyDescriptor(item.getName(), this.getClass());
                Method setMethod = pd.getWriteMethod();
                if (pd.getPropertyType().equals(byte.class) || pd.getPropertyType().equals(Byte.class)) {
                    setMethod.invoke(this, Byte.parseByte(value));
                }else if (pd.getPropertyType().equals(short.class) || pd.getPropertyType().equals(Short.class)) {
                    setMethod.invoke(this, Short.parseShort(value));
                }else if (pd.getPropertyType().equals(int.class) || pd.getPropertyType().equals(Integer.class)) {
                    setMethod.invoke(this, Integer.parseInt(value));
                }else if (pd.getPropertyType().equals(long.class) || pd.getPropertyType().equals(Long.class)) {
                    setMethod.invoke(this, Long.parseLong(value));
                }else if (pd.getPropertyType().equals(float.class) || pd.getPropertyType().equals(Float.class)) {
                    setMethod.invoke(this, Float.parseFloat(value));
                }else if (pd.getPropertyType().equals(double.class) || pd.getPropertyType().equals(Double.class)) {
                    setMethod.invoke(this, Double.parseDouble(value));
                }else if (pd.getPropertyType().equals(char.class) || pd.getPropertyType().equals(Character.class)) {
                    setMethod.invoke(this, value.toCharArray()[0]);
                }else if (pd.getPropertyType().equals(boolean.class) || pd.getPropertyType().equals(Boolean.class)) {
                    setMethod.invoke(this, Boolean.valueOf(value));
                }else {
                    setMethod.invoke(this, value);
                }
                index += item.getLength();
            }
        } catch (Exception e) {
            throw new Exception("解消息出错:" + e.getMessage(), e);
        }
    }
    
    /**
     * 获得消息片长
     * @author Zhenwei.Zhang (2013-9-25)
     * @return
     */
    public int getLength() {
        int length = 0;
        for (MsgField item : itemList) {
            length += item.getLength();
        }
        return length;
    }
    
    /**
     * 格式化真实值为指定长度字符串,超长自动截取
     * @author Zhenwei.Zhang (2013-9-26)
     * @param value
     * @param fillChar 填充字符
     * @param side 填充位置
     * @param totalLen 域定义的长度
     * @param charsetName 编码
     * @return
     */
    private String autoFill(String value, char fillChar, FillSide side, int totalLen, String charsetName) {
        try {
            if (value == null) {
                value = "";
            }
            StringBuffer sbuffBuffer = new StringBuffer();
            // 长度超过指定长度,截取
            if (value.getBytes(charsetName).length > totalLen) {
                byte[] data = new byte[totalLen];
                System.arraycopy(value.getBytes(charsetName), 0, data, 0, totalLen);
                sbuffBuffer.append(new String(data, charsetName));
                return sbuffBuffer.toString();
            }
            if (side == socket.msg.MsgField.FillSide.RIGHT) {
                sbuffBuffer.append(value);
            }
            for (int i = value.getBytes(charsetName).length; i < totalLen; i++) {
                sbuffBuffer.append(fillChar);
            }
            if (side == socket.msg.MsgField.FillSide.LEFT) {
                sbuffBuffer.append(value);
            }
            return sbuffBuffer.toString();
        } catch (UnsupportedEncodingException e) {
            throw new RuntimeException("系统不支持" + charsetName + "编码");
        }
    }
    
    /**
     * 获得消息域的真实值
     * @author Zhenwei.Zhang (2013-9-26)
     * @param value
     * @param side 填充位置
     * @param fillChar 填充字符
     * @return
     * @throws Exception
     */
    private String getRealVal(String value, FillSide side, char fillChar) throws Exception {
        char[] chars = value.toCharArray();
        if (FillSide.LEFT == side) {
            int index = 0;
            for (int i = 0; i < chars.length; i++) {
                if (fillChar == chars[i]) {
                    index ++;
                } else {
                    continue;
                }
            }
            return value.substring(index);
        } else if (FillSide.RIGHT == side) {
            int index = chars.length - 1;
            for (int i = index; i >= 0; i--) {
                if (fillChar == chars[i]) {
                    index --;
                } else {
                    continue;
                }
            }
            return value.substring(0, index + 1);
        } else {
            throw new Exception("无效的填充位置");
        }
    }

}

消息包类

package socket.msg;

import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;

/**
 * 消息包,由多个消息片组成
 * @author Zhenwei.Zhang (2013-10-12)
 */
public abstract class MsgPackage {
    
    /** 消息包的消息片数组 */
    String[] pieces = null;
    
    public MsgPackage(String... pieName) {
        pieces = pieName;
    }
    
    /**
     * 组包
     * @author Zhenwei.Zhang (2013-9-26)
     * @param charsetName
     * @return
     * @throws Exception
     */
    public byte[] pack(String charsetName) throws Exception {
        int index = 0;
        byte[] result = new byte[this.getLength()];
        for (String p : pieces) {
            PropertyDescriptor pd = new PropertyDescriptor(p, this.getClass());
            Method getterMethod = pd.getReadMethod();
            MsgPiece piece = (MsgPiece)getterMethod.invoke(this);
            if (piece == null) { //属性为空则该属性组空串
                piece = (MsgPiece) pd.getPropertyType().newInstance();
            }
            byte[] t = piece.pack(charsetName);
            System.arraycopy(t, 0, result, index, t.length);
            index += t.length;
        }
        return result;
    }
    
    /**
     * 解包
     * @author Zhenwei.Zhang (2013-9-26)
     * @param msg
     * @param charsetName
     * @throws Exception
     */
    public void unPack(byte[] msg, String charsetName) throws Exception {
        if (msg.length != this.getLength()) {
            throw new Exception("解消息出错,消息包长度不合法!");
        }

        int index = 0;
        for (String p : pieces) { // 创建一个新的属性对象,解包,赋值
            PropertyDescriptor pd = new PropertyDescriptor(p, this.getClass());
            Method writeMethod = pd.getWriteMethod();
            MsgPiece piece = (MsgPiece) pd.getPropertyType().newInstance();
            byte[] t = new byte[piece.getLength()];
            System.arraycopy(msg, index, t, 0, t.length);
            piece.unPack(t, charsetName);
            writeMethod.invoke(this, piece);
            index += t.length;
        }
    }
    
    /**
     * 获得消息包长度
     * @author Zhenwei.Zhang (2013-9-26)
     * @return
     * @throws Exception
     */
    public int getLength() throws Exception {
        int length = 0;
        try {
            for (String p : pieces) {
                PropertyDescriptor pd = new PropertyDescriptor(p, this.getClass());
                Method getterMethod = pd.getReadMethod();
                MsgPiece piece = (MsgPiece)getterMethod.invoke(this);
                if (piece == null) {
                    piece = (MsgPiece) pd.getPropertyType().newInstance();
                }
                length += piece.getLength();
            }
        } catch (Exception e) {
            throw new Exception("获得消息包长度错误:" + e.getMessage(), e);
        }
        return length;
    }
}

实例

以下是使用上述封装做的简单实现例子:
定义一个消息由消息头和消息体组成,消息头由name,sex,UAge,amt等属性组成,消息体由content属性组成。

package socket.msg.test;

import socket.msg.MsgField;
import socket.msg.MsgPiece;
import socket.msg.MsgField.FillSide;

public class TestHead extends MsgPiece {
    
    private String name;
    private boolean sex;
    private int UAge;
    private String URL;
    private double amt;

    public int getUAge() {
        return UAge;
    }

    public void setUAge(int uAge) {
        UAge = uAge;
    }
    
    public double getAmt() {
        return amt;
    }

    public void setAmt(double amt) {
        this.amt = amt;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public boolean isSex() {
        return sex;
    }

    public void setSex(boolean sex) {
        this.sex = sex;
    }

    public String getURL() {
        return URL;
    }

    public void setURL(String uRL) {
        URL = uRL;
    }

    private static final MsgField[] items = new MsgField[]{
            new MsgField("name", 10, ' ', FillSide.RIGHT),
            new MsgField("sex", 10, '0', FillSide.LEFT),
            new MsgField("UAge", 10, '0', FillSide.LEFT),
            new MsgField("URL", 10, ' ', FillSide.RIGHT),
            new MsgField("amt", 10, '0', FillSide.LEFT)
        };
    
    public TestHead() {
        super(items);
    }
}
package socket.msg.test;

import socket.msg.MsgField;
import socket.msg.MsgPiece;
import socket.msg.MsgField.FillSide;

public class TestBody extends MsgPiece {
    
    private static final MsgField[] items = new MsgField[]{
        new MsgField("content", 20, ' ',FillSide.RIGHT),
    };
    
    public TestBody() {
        super(items);
    }
    
    private String content;

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

}
package socket.msg.test;

import socket.msg.MsgPackage;

public class TestPackage extends MsgPackage {
    
    public TestPackage() {
        super("t1", "t2");
    }
    
    private TestHead t1;
    
    private TestBody t2;

    public TestHead getT1() {
        return t1;
    }

    public void setT1(TestHead t1) {
        this.t1 = t1;
    }

    public TestBody getT2() {
        return t2;
    }

    public void setT2(TestBody t2) {
        this.t2 = t2;
    }

}

测试

package socket.msg.test;

import java.io.UnsupportedEncodingException;

public class Test {

    /**
     * @author Zhenwei.Zhang (2013-11-12)
     * @param args
     * @throws Exception 
     * @throws UnsupportedEncodingException 
     */
    public static void main(String[] args) throws UnsupportedEncodingException, Exception {
        TestHead head = new  TestHead();
        head.setName("name");
        head.setAmt(12.121);
        head.setSex(false);
        head.setURL("http://asdsaaaaaaaaaaaaaaaaaaaaaaa");
        head.setUAge(111);
        
        TestBody body = new TestBody();
        body.setContent("content");
        
        TestPackage packagee = new TestPackage();
        packagee.setT1(head);
        packagee.setT2(body);
        
        System.out.println(new String(packagee.pack("GBK"), "GBK"));
        
        TestPackage packagee2 = new TestPackage();
        String str = "name      000000true0000000111http://asd000012.121content             ";
        packagee2.unPack(str.getBytes("GBK"), "GBK");
        System.out.println(packagee2.getT1().isSex());
    }

}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容