抛砖引玉,写了一个javabean和固定格式报文相互解包、拆包的类,供大家参考...

最近在用java做报文的解包、拆包,其中包括xml报文和javabean之间的转换,采用了开源框架castor。
javabean和固定格式报文的转换,没有找到相应的开源框架,自己写了一个通用的类,抛砖引玉一下,请大家参考,欢迎提意见一起探讨完善。
其中,类名、方法名,为了容易看懂,没有进行缩写。
固定报文的格式定义,采用了string的三维数组,进一步开发,可以放置到xml配置文件中。目前各种框架都采用xml作为配置文件。
字段长度不够时,补充字符是char到byte进行了强制转换,不适用于所有字符。
其中,Method类生成,每个字段都生成一个,不能重复使用,通用的反射框架,一般是先对类进行解析,生成静态变量容器Map,进行存储,再根据配置文件,直接去静态变量容器Map中进行获取,可以重复使用,这里是可以进一步完善的地方。
一个类只能简单的做到对报文生成解析工作与报文的具体格式的解耦,不再需要为每一个报文的生成和解析分别写一个方法,报文变了可以只修改报文定义的String数组就可以。
import java.io.UnsupportedEncodingException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;


public class JavaBeanConvertFixedLengthPacket {

/**
* 将pojo按照requestPacketFormatArray三维数组定义的格式生成固定格式报文
* @param requestPacketFormatArray
* @param pojo
* @param rightCharStr
* @param leftCharStr
* @param charsetName
* @return
* @throws Exception
*/
public static String javaBeanToFixedLengthPacket(String[][][] requestPacketFormatArray,Object pojo,char rightCharStr,char leftCharStr,String charsetName) throws Exception{
String fieldName = new String();
String fieldLenght = new String();
String parameterClass = new String();
StringBuffer requestStr = new StringBuffer();
int requestPacketFormatArrayLength = requestPacketFormatArray.length;
for(int i=0;i<requestPacketFormatArrayLength;i++){
String[][] requestFieldFormatArray = requestPacketFormatArray[i];
int requestFieldFormatArrayLength = requestFieldFormatArray.length;
if(requestFieldFormatArrayLength!=3){
throw new Exception("invalid field defined");
}
for(int j=0;j<requestFieldFormatArrayLength;j++){
String[] requestPropertyFormatArray = requestFieldFormatArray[j];
int requestPropertyFormatArrayLength = requestPropertyFormatArray.length;
if(requestPropertyFormatArrayLength!=2){
throw new Exception("invalid field property defined");
}
if(requestPropertyFormatArray[0].equals("name"))
fieldName = requestPropertyFormatArray[1];
if(requestPropertyFormatArray[0].equals("length"))
fieldLenght = requestPropertyFormatArray[1];
if(requestPropertyFormatArray[0].equals("parameterClass"))
parameterClass = requestPropertyFormatArray[1];
}
Class c = pojo.getClass();
Method m = c.getMethod("get" + Character.toUpperCase(fieldName.charAt(0)) + fieldName.substring(1));
String fieldValue = m.invoke(pojo)==null?"":m.invoke(pojo).toString();
if(parameterClass.equals("java.lang.String"))
requestStr.append(formatFieldByRightChar(fieldValue,Integer.parseInt(fieldLenght),rightCharStr,charsetName));
else{
requestStr.append(formatFieldByLeftChar(fieldValue,Integer.parseInt(fieldLenght),leftCharStr,charsetName));
}

}
return requestStr.toString();
}
/**
* 将strByte字符串按照requestPacketFormatArray三维数组定义的格式生pojo
* @param requestPacketFormatArray
* @param pojo
* @param strByte
* @param charsetName
* @throws Exception
*/
public static void fixedLengthPacketToJavaBean(String[][][] requestPacketFormatArray,Object pojo,String str,String charsetName) throws Exception{
String fieldName = new String();
String fieldLenght = new String();
String parameterClass = new String();
StringBuffer requestStr = new StringBuffer();
byte[] strByte = str.getBytes(charsetName);
int index = 0;
int length = strByte.length;
int requestPacketFormatArrayLength = requestPacketFormatArray.length;
for(int i=0;i<requestPacketFormatArrayLength;i++){
String[][] requestFieldFormatArray = requestPacketFormatArray[i];
int requestFieldFormatArrayLength = requestFieldFormatArray.length;
if(requestFieldFormatArrayLength!=3){
throw new Exception("invalid field defined");
}
for(int j=0;j<requestFieldFormatArrayLength;j++){
String[] requestPropertyFormatArray = requestFieldFormatArray[j];
int requestPropertyFormatArrayLength = requestPropertyFormatArray.length;
if(requestPropertyFormatArrayLength!=2){
throw new Exception("invalid field property defined");
}
if(requestPropertyFormatArray[0].equals("name"))
fieldName = requestPropertyFormatArray[1];
if(requestPropertyFormatArray[0].equals("length"))
fieldLenght = requestPropertyFormatArray[1];
if(requestPropertyFormatArray[0].equals("parameterClass"))
parameterClass = requestPropertyFormatArray[1];
}
Class c = pojo.getClass();
int tempLenght = Integer.parseInt(fieldLenght);
byte[] byteTemp = new byte[tempLenght];
for(int k=0;k<tempLenght;k++)
byteTemp[k] = strByte[index+k];
index = index+tempLenght;
if(parameterClass.equals("java.lang.String")){
Method m = c.getMethod("set" + Character.toUpperCase(fieldName.charAt(0)) + fieldName.substring(1),Class.forName(parameterClass));
m.invoke(pojo,new String(byteTemp).trim());
}
else if(parameterClass.equals("int")){
Method m = c.getMethod("set" + Character.toUpperCase(fieldName.charAt(0)) + fieldName.substring(1),int.class);;
//Method mArray[] = c.getDeclaredMethods();
//for(Method mTemp:mArray)
// if(mTemp.getName().equals("set" + Character.toUpperCase(fieldName.charAt(0)) + fieldName.substring(1)))
// m=mTemp;
m.invoke(pojo,Integer.valueOf(new String(byteTemp)));
}
else if(parameterClass.equals("long")){
Method m = null;
Method mArray[] = c.getDeclaredMethods();
for(Method mTemp:mArray)
if(mTemp.getName().equals("set" + Character.toUpperCase(fieldName.charAt(0)) + fieldName.substring(1)))
m=mTemp;
m.invoke(pojo,Long.valueOf(new String(byteTemp)));
}
else if(parameterClass.equals("float")){
Method m = null;
Method mArray[] = c.getDeclaredMethods();
for(Method mTemp:mArray)
if(mTemp.getName().equals("set" + Character.toUpperCase(fieldName.charAt(0)) + fieldName.substring(1)))
m=mTemp;
m.invoke(pojo,Float.valueOf(new String(byteTemp)));
}
}
}
/**
* str右补charStr参数指定的字符,格式化为指定byte长度为size的字符串
* @param str 原字符串大小
* @param size byte长度
* @param charStr 补充字符
* *@param charsetName
* the name of a supported
* {@link java.nio.charset.Charset </code>charset<code>}
* @return
* @throws UnsupportedEncodingException
*/
public static String formatFieldByRightChar(String str,int size,char charStr,String charsetName) throws UnsupportedEncodingException
{
byte[] bufferByte = new byte[size];
for (int i = 0; i < bufferByte.length; i++)
{
bufferByte[i] = (byte) charStr;
}
byte[] strByte = str.getBytes(charsetName); // 得到字符的字节数
int strLength = strByte.length;
System.arraycopy(strByte, 0, bufferByte, 0, size>strLength?strLength:size);
return new String(bufferByte);
}
public static String formatFieldByRightChar(String str,int size,String charsetName) throws UnsupportedEncodingException
{
return formatFieldByRightChar(charsetName, size, ' ', charsetName);
}
/**
* str左补charStr参数指定的字符,格式化为指定byte长度为size的字符串
* @param str 原字符串大小
* @param size byte长度
* @param charStr 补充字符
* @param charsetName
* the name of a supported
* {@link java.nio.charset.Charset </code>charset<code>}
* @return
* @throws UnsupportedEncodingException
*/
public static String formatFieldByLeftChar(String str,int size,char charStr,String charsetName) throws UnsupportedEncodingException
{
byte[] bufferByte = new byte[size];
for (int i = 0; i < bufferByte.length; i++)
{
bufferByte[i] = (byte) charStr;
}
byte[] strByte = str.getBytes(charsetName);
int strLength = strByte.length;
System.arraycopy(strByte, 0, bufferByte, (size-strLength)>0?(size-strLength):0, (size-strLength)>0?strLength:size);
return new String(bufferByte);
}
/**
* @param str
* @param size
* @param charsetName
* @return
* @throws UnsupportedEncodingException
*/
public static String formatFieldByLeftChar(String str,int size,String charsetName) throws UnsupportedEncodingException
{
return formatFieldByLeftChar(str,size,'0',charsetName);
}

public static void main(String args[]){
class TestInvode{
String cardno;
String name;
int num;
float amount;
public String getCardno() {
return cardno;
}
public void setCardno(String cardno) {
this.cardno = cardno;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public float getAmount() {
return amount;
}
public void setAmount(float amount) {
this.amount = amount;
}
}
String requestFormat[][][] =
{
{
{"name","cardno"},{"length","16"},{"parameterClass","java.lang.String"}
},
{
{"name","name"},{"length","10"},{"parameterClass","java.lang.String"}
}
,
{
{"name","num"},{"length","10"},{"parameterClass","int"}
},
{
{"name","amount"},{"length","10"},{"parameterClass","float"}
}
};
TestInvode ti = new TestInvode();
ti.cardno = "4512";
ti.name="不告诉你";
ti.num = 95;
ti.amount=45454.44f;
try {
System.out.println("######"+javaBeanToFixedLengthPacket(requestFormat, ti, ' ', '0', "gb2312"));
} catch (Exception e) {
e.printStackTrace();
}
String str = "4512 不告诉你 00000000950045454.44";
TestInvode tii = new TestInvode();
try {
fixedLengthPacketToJavaBean(requestFormat, tii, str,"gb2312");
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("######tii.cardno:"+tii.cardno);
System.out.println("######tii.name:"+tii.name);
System.out.println("######tii.num:"+tii.num);
String s = "人";
try {
System.out.println(s.getBytes("utf-8").length);
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(Thread.currentThread().getContextClassLoader());
System.out.println(tii.getClass().getClassLoader());
System.out.println(ClassLoader.getSystemClassLoader());
}
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值