当我在applet中收到二进制格式的短信时,如何获得一个简短的数字

时间:2013-11-27 07:04:42

标签: java javacard sim-card

我有一个可以接收二进制短信并处理它们的Java卡小程序。现在我需要检查它们是否来自特定的短号。

这就是我所做的

case EVENT_FORMATTED_SMS_PP_ENV:{
final EnvelopeHandler eh = EnvelopeHandler.getTheHandler();
    short sd_len = eh.getSecuredDataLength();
    short sd_offset = eh.getSecuredDataOffset();
    byte[] tmpData = new byte[10];
    short dataLen = 0;
    if (eh.findTLV(ToolkitConstants.TAG_ADDRESS, (byte) 1) != ToolkitConstants.TLV_NOT_FOUND) {
        dataLen = eh.getValueLength();   
        eh.copyValue((short)0,tmpData,(short)0,(short)dataLen);
    }

    actions.showNumberBuffer(tmpData, (short)dataLen);      
                    break;
                }

我成功接收到地址,但它与发送二进制短信的短号不同 也许还有其他方法可以获得短数字?

1 个答案:

答案 0 :(得分:1)

地址TLV是服务中心地址。

发件人的地址是SMS-TPDU TLV内的TP-OA。 因此,您需要手动解析它。

以下是一个例子:

// Format of data under first SMS TPDU TLV, taken using EnvelopeHandler.findTLV()
// ----------+-----+---------+---------+--------+--------+---------+--------+-------+
//     1     |  1  |     1   |  0~10   |    1   |   1    |    7    |   1    | 0~140 |
// ----------+-----+---------+---------+--------+--------+---------+--------+-------+
//           | Len | TON/NPI | Address |        |        |         |        |       |
// TP-MTI... |        TP-OA            | TP-PID | TP-DCS | TP-SCTS | TP-UDL | TP-UD |
// ----------+-----+---------+---------+--------+--------+---------+--------+-------+

// Get received TPOA
EnvelopeHandler envHdlr = EnvelopeHandler.getTheHandler();
envHdlr.findTLV(ToolkitConstants.TAG_SMS_TPDU, (byte) 1);

// Assign TPOA to a buffer [0] for bytes-length [1..12] for the value as coded in 3GPP TS 23.040
envHdlr.copyValue((short) 1, tpdaBuf, (short) 1, (short) 12);
byte lengthTPOA = (byte) ((tpdaBuf[1] + 5) / 2);
tpdaBuf[0] = lengthTPOA;