Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人有一个为 ISO 8583 消息中的第 55 个字段(保留 ISO)分配值的示例,应该为其分配 TLV 值?
最简单的方法是将您的字段 55 作为不透明字段(只是一个byte[])处理,然后使用一些org.jpos.tlv.*类来创建您的 TLV 字段。
byte[]
org.jpos.tlv.*
一旦您“打包”您的 TLV 字段(使用tlv.pack()),您可以将其设置byte[]到您的 ISOMsg 字段 55 中,即:
tlv.pack()
m.set(55, tlv.pack());