tags:

views:

26

answers:

1

Some field value contains 0x0D specail character The value from the hexdump:

4041000000000001D0534534534112342340000

But when I get the field value using isoMsg.getString(field_id), I got an equal sign instead of the 0x0D character

4041000000000001=0534534534112342340000

Is there any method to return the value as is without changing any control character data ?

A: 

Something's not right. You're looking at this:

4041000000000001D0534534534112342340000

This is 39 characters, or 19.5 bytes. Is this your issue?

John at CashCommons
I don't think so.
Mohammed
It just doesn't make sense to interpret that string as character codes because you have half a character in that string. What about the fact that "D" is the only letter in that string?
John at CashCommons