本文介绍了使用GSM调制解调器发送超过160个字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 大家好, 我为GSM调制解调器发送短信软件。它工作正常。但我现在的问题是它不能发送超过160个字符。 错误如下: 文本长两个。最多允许160个生成的septets。当前输入结果为288个septets(由我给出)。 当我点击我的发送按钮时,我的代码如下: Hi all,I make a software for sending SMS for GSM Modem. It works fine. But my problem is now that it couldn't send more than 160 character. The error is given below:" Text is two long. A maximum of 160 resulting septets is allowed. The current input result in 288 septets(given by me)."My code is given below when I click on my send button:// port connected successfullypdu = new SmsSubmitPdu(message, cell, "");comm.SendMessage(pdu); 请帮我快速找到解决方案。因为我已经试了两天。但没有解决方案。 提前谢谢。Please help me to find the solution immediate in a short way. Because I have tried it for last two days. But got no solution. Thanks in advance.推荐答案 这篇关于使用GSM调制解调器发送超过160个字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-23 02:41