代码如下:
import org.jpos.iso.packager.ISO87BPackager;
import org.jpos.iso.ISOException;
import org.jpos.iso.ISOMsg;
import org.jpos.iso.ISOUtil;
public class ParseISOMsg {
public static void main(String[] args) throws ISOException {
String hexmsg = "3038313082200000020000000400000000000000111312532012345630300301";
// convert hex string to byte array
byte[] bmsg =ISOUtil.hex2byte(hexmsg);
ISOMsg m = new ISOMsg();
// set packager, change ISO87BPackager for the matching one.
m.setPackager(new ISO87BPackager());
//unpack the message using the packager
m.unpack(bmsg);
//dump the message to standar output
m.dump(System.out, "");
}
}
现在发出异常:
Exception in thread "main" org.jpos.iso.ISOException: org.jpos.iso.IFB_NUMERIC: Problem unpacking field 23 (java.lang.ArrayIndexOutOfBoundsException: 32) unpacking field=23, consumed=31
at org.jpos.iso.ISOBasePackager.unpack(ISOBasePackager.java:340)
at org.jpos.iso.ISOMsg.unpack(ISOMsg.java:468)
at ParseISOMsg.main(ParseISOMsg.java:17)
告诉我为什么我不能分配此行-3038313082200000020000000400000000000000111312532012345630300301吗?
答案 0 :(得分:3)
这似乎是一个奇怪的打包程序,它使用BCD编码大多数字段,但是使用ASCII编码MTI。我建议您基于iso87binary.xml创建自己的字段打包程序。您想要将字段0的定义从IFB_NUMERIC
更改为IFA_NUMERIC
,那么您将得到如下内容:
<isomsg>
<field id="0" value="0810"/>
<field id="7" value="1113125320"/>
<field id="11" value="123456"/>
<field id="39" value="00"/>
<field id="70" value="301"/>
</isomsg>
为了创建打包程序,您想使用如下代码:
ISOPackager p = new GenericPackager("yourpackager.xml");