コード例 #1
0
ファイル: ISOMsg.java プロジェクト: edianzuxiehui/jpos
 protected void writePackager(ObjectOutput out) throws IOException {
   out.writeByte('P');
   String pclass = packager.getClass().getName();
   byte[] b = pclass.getBytes();
   out.writeShort(b.length);
   out.write(b);
 }