SMS PDU格式 - 如何提取消息部分

时间:2015-08-24 07:42:01

标签: java sms gsm pdu

如何从SMS PDU中提取消息?

我需要从SMS PDU接收消息。当我使用一些在线服务时,它们工作正常。例如,此处 - http://www.diafaan.com/sms-tutorials/gsm-modem-tutorial/online-sms-pdu-decoder/ - 来自PDU 0791448720003023240DD0E474D81C0EBB010000111011315214000BE474D81C0EBB5DE3771B的消息为diafaan.com

我发现了一些SMS PDU Java实现来进行PDU->Text转换,但似乎它们没有按照我的预期工作,因为我没有从整个PDU中提取消息部分(换句话说我不切服务信息 - 来自,SMSC ...) - 那么如何在Java上执行此操作?或者只是一个算法也将是一个很大的帮助。谢谢!

1 个答案:

答案 0 :(得分:3)

最后我使用了SMSLib库:

            //String resultMessage = ...
            Pdu pdu = new PduParser().parsePdu(resultMessage);
            byte[] bytes = pdu.getUserDataAsBytes();
            String decodedMessage;
            int dataCodingScheme = pdu.getDataCodingScheme();
            if (dataCodingScheme == PduUtils.DCS_ENCODING_7BIT) {
                decodedMessage = PduUtils.decode7bitEncoding(null, bytes);
            } else if (dataCodingScheme == PduUtils.DCS_ENCODING_8BIT) {
                decodedMessage = PduUtils.decode8bitEncoding(null, bytes);
            } else if (dataCodingScheme == PduUtils.DCS_ENCODING_UCS2) {
                decodedMessage = PduUtils.decodeUcs2Encoding(null, bytes);
            } else {
                log.error("Unknown DataCodingScheme!");
                ...
            }