如何让我的 midlet 向多个收件人发送 SMS 消息
我目前正在开发一个用于发送短信的 midlet。我使用了文本字段并将输入约束指定为电话号码(此约束允许在诺基亚平台的手机中自动搜索号码)。但缺点是它只接受*(星号)和#作为分隔符。它不允许使用;(分号)。 我需要一种算法,允许将短信发送给多个收件人。
I am currently working on a midlet for sending SMS messages. I made use of a textfield and specified the Input constraints as phone numbers (this constraints allow for automatic search for numbers in a phone for a Nokia platform). But the disadvantage is that it only accepts *(asterics) and # as the delimiters. It doesn't allow for ;(semicolon) to be used.
Please I need an algorithm that allows for an SMS to be sent to multiple recipients.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用循环或任何迭代概念发送多条短信。例如,假设您要添加
;
数字末尾意味着您可以 使用;
分隔符分割该号码,并将该号码添加到Vector
中,并使用循环发送短信。You can send multiple SMS using the loop or any iteration concept. For example suppose if you are adding
;
end of the number means you can split that number using;
separator and add that number's intoVector
and the use the loop for sending SMS.