0

我想使用 Open Smpp 协议向设备发送命令。API 人员向我提供了 ProgramID,但我没有在开放的 smpp api 中找到任何接受 programId 的方法。

So i thought to add it in setExtraOptional(TLV tlv)
but i am not able to set TLV parameter.
I have below values, 

tag = 0x1234, 
programId = 12345

How can i build the TLV from above values?

在此先感谢您的帮助。

4

1 回答 1

0

您可以简单地添加 request.setExtraOptional((short) 0x1400, new ByteBuffer("programId:12345,String,5".getBytes())); 作为发送 SM 请求的额外参数

于 2018-05-14T14:12:10.943 回答