Send multiple SMS on BlackBerry

风流意气都作罢 提交于 2019-12-11 16:42:39

问题


I am able to send a single SMS on BlackBerry, but when I try to send more than one SMS, only the first is sent.


回答1:


AFAIK you can send sms to multiple numbers using loop.

you have the code to send single sms,

for (int i = 0; i < mobileNumbers.length; i++) {

            //method for sending single sms
            sendSMS(mobileNumbers[i],msg);
        }



回答2:


Maybe you can use MultipartMessage to send large messages.



来源:https://stackoverflow.com/questions/4144169/send-multiple-sms-on-blackberry

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!