我必须发送一条带有系统当前时间(EPOCH)的消息,该消息将根据以下详细信息发送。还以纳秒为单位发送 EPOCH 时间。
field - current_time
type - UINT64
byte size - 8
value - 0 to 1.84467E+19
我的消息结构如下,
class MsgHeader {
int message_length;
String sender_sys;
String destination_sys;
**int current_time;**
char message_type;
................
}
谁能建议我如何使用java来做到这一点?