如何在黑莓中监听电子邮件事件
我正在黑莓 JDE 6 中开发简单的应用程序。 我的应用程序将侦听任何传入或传出事件,即短信事件、彩信事件、电子邮件事件。那些事件发生之后。应用程序将提示用户有关事件的信息,并进行一些处理。
为了监听 SMS 和 MMS 事件,我正在实现 OutboundMessageListener 接口并将其传递给 MessageConnection 类对象,如下所示。
我找到了 SMS 和 MMS 的协议(sms:// 和 mms://) 参考此链接连接器类协议支持
对于短信和彩信,我使用此代码来收听事件,
MessageConnection sms= (MessageConnection)Connector.open("sms://:0");
sms.setMessageListener(customPhoneListener);
MessageConnection mms = (MessageConnection) Connector.open("mms://0");
mms.setMessageListener(customPhoneListener);
但对于电子邮件,我无法找到任何协议,例如短信和彩信,
我如何收听电子邮件事件? 感谢任何帮助:)
我尝试使用下面的代码(即使我知道它不正确,也要尝试)来收听电子邮件事件,但没有达到预期的运气
MessageConnection email = (MessageConnection) Connector.open("email://0");
email.setMessageListener(customPhoneListener);
I am developing and simple application in blackberry JDE 6.
My application will listen to any incoming or outgoing event i.e SMS event, MMS event, Email Event. After the occurrence of those event. App will prompt user about event and will do some processing.
for listening to SMS and MMS event i am implementing the OutboundMessageListener interface and passing it to the MessageConnection class object as shown belowe.
i have found the protocol for SMS and MMS (sms:// and mms://)
referred to this link Connector class protocol support
for SMS and MMS i am using this code to listen to the events
MessageConnection sms= (MessageConnection)Connector.open("sms://:0");
sms.setMessageListener(customPhoneListener);
MessageConnection mms = (MessageConnection) Connector.open("mms://0");
mms.setMessageListener(customPhoneListener);
But for email i am not able to find any protocol like sms and mms
how can i listen to email events any idea ??
any help appreciated :)
I have tried using the below code (jst to try even if i knw its not correct) to listen to email event but no luck as expected
MessageConnection email = (MessageConnection) Connector.open("email://0");
email.setMessageListener(customPhoneListener);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 net .rim.blackberry.api.mail.event.FolderListener 和 商店.addFolderListener()
Take a look at net.rim.blackberry.api.mail.event.FolderListener and Store.addFolderListener()