我正在使用j8583 library來構建iso8583消息。我想將DE96元素值設置爲二進制數據的十六進制。根據我的理解,該值應該轉換爲二進制,然後轉換爲十六進制。很像BitMap值。我沒有找到任何方式實現這個使用j8583 API。我試過ISOType.BINARY類型,但沒有給出所需的值。j8583庫 - 如何將值轉換爲十六進制
請參見下面的代碼
package j8583.example;
import java.io.IOException;
import java.util.Date;
import com.solab.iso8583.IsoMessage;
import com.solab.iso8583.IsoType;
import com.solab.iso8583.MessageFactory;
import com.solab.iso8583.parse.ConfigParser;
import com.solab.iso8583.util.HexCodec;
public class MsgSender0800 {
public static void main(String[] args) {
try {
MessageFactory mfact = ConfigParser.createFromClasspathConfig("j8583/example/config.xml");
IsoMessage msg = mfact.newMessage(0x800);
msg.setValue(7, new Date(), IsoType.DATE10, 10);
msg.setValue(96, "123456", IsoType.BINARY, 6);
/* I want DE 96 value similar to the output of this code
String test = "123456";
String encoded = HexCodec.hexEncode(test.getBytes(), 0, test.length());
System.out.println(encoded);
System.out.println(new String(HexCodec.hexDecode(encoded)));
*/
String strMsg = new String(msg.writeData());
System.out.println(strMsg);
} catch (IOException e) {
e.printStackTrace();
}
}
}
上述代碼打印如下異消息
0800820000000000080004000001000000000219092608000000000000000000
請參閱過去的12個字節是由msg.setValue(96, "123456", IsoType.BINARY, 6);
生產的,而不是上述消息我想建立以下消息
08008200000000000800040000010000000002190926080000000000000000000313233343536
最後6個字節是十六進制編碼值。
的ISO.BINAY還附加額外的「0」,即與msg.setValue(96, "123456", IsoType.BINARY, 6);
,它產生的123456000000
代替123456
如果有人使用這個API來完成它,我想知道。否則,我必須在其上添加某種包裝來添加此功能。
以下是xml配置
<template type="0800">
<field num="53" type="NUMERIC" length="16">00</field>
<field num="70" type="NUMERIC" length="3">000</field>
</template>
我很新的圖書館。任何人都可以幫助我理解。
由於
我懷疑你對號碼存儲的理解是不夠的。二進制/十六進制/八進制/十進制常常是透視問題。如果用不同的數字系統查看,相同的數據可能會有所不同。還搜索十進制/二進制/十六進制轉換線程。我敢肯定,它們中有大量的 – gerrytan
我正在尋找一種方法來使用j8583庫進行這種轉換。我可能是我對圖書館的理解。 – amique
我已經想通了。對於IsoType.BINARY,提供的值應該是byte [],然後在寫入操作期間將該字節數組轉換爲十六進制。 – amique