简体   繁体   中英

Character Encoding for ISO8583

i use Apache Mina for TCP/IP Communication for ISO8583 Message . But i wonder, what the character encoding for the message? Just send standard String or bytes ?

The type of message encoding is going to depend on the ISO8583 Message Spec of the processor/bank in which you are sending to.

From your code you will likely send an array of bytes vs a string due to the binary nature of ISO8583, its bitmap, and field types.

Some interfaces will use ASCII, others EBCDIC - Extended Binary Coded Decimal Interchange Code , some values will be Binary Coded Decimal ('BCD') - The ISO8583 Message spec and if you can get ahold of any sample traces or samples messages will assist you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

Related Question
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM