在自定义应用程序中接收从 WTK 模拟器发送的 SMS
我正在使用 Sun WTK 运行一个需要发送和选择性接收 SMS 的 midlet。 WMA 控制台可用于向 midlet 发送和接收消息,但我想使用我自己的应用程序执行相同的操作。
我做了一些嗅探,发现消息是通过 UDP 从 WMA 控制台发送到模拟器的。
I'm using Sun WTK to run a midlet that needs to send and optionally receive SMS. WMA console can be used to send and receive messages to the midlet but I'd like to do the same thing using my own application.
I have done some sniffing, and noticed that the messages are sent by UDP from the WMA console to the emulator.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在深入研究 WTK 的 jar 后,我能够弄清楚如何发送和接收 SMS。我必须将 jars
kvem.jar
和kenv.zip
包含在应用程序类路径中。在Linux下测试。After digging inside the jars in WTK I was able to figure out how to send and receive SMS. I had to include the jars
kvem.jar
andkenv.zip
in the application classpath. Tested under Linux.