使用java通过USB端口发送短信
我已通过数据线将诺基亚连接到 USB 端口。我需要一个java程序来访问我的手机的gsm模块并发送短信。
我需要使用哪个 API?通信需要通过USB端口进行。
谢谢&问候,
斯里
I have connected my nokia through data cable to USB port. I need a program in java to access the gsm module of my mobile and send text messages.
which API i need to use for it? communication need to be taken place through USB port.
Thanks & Regards,
Sri
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 smslib。这是一个非常可靠的解决方案。它支持通过串口接口或IP接口连接的GSM电话和GSM调制解调器。
请参阅此处了解更多信息。
You can use smslib. It is a very reliable solution. It supports GSM phones and GSM modems connected via serial port interfaces or IP interfaces.
Look here for more.
看看 Kannel。顺便说一句,它不是 Java 应用程序。
Have a look at Kannel. It is not a Java application, BTW.
电话需要通过 RS-232 串行端口连接。使用 USB 数据线或 USB 转 RS232 适配器和串行数据线。
使用 Java Communications API 连接到电话。
然后使用AT命令发送和接收短信。 这里有一个示例。它不是诺基亚特有的,但它几乎是一个标准命令集。
The phone needs to be hooked up via a serial port for RS-232. Using either a USB data cable or a USB-to-RS232 adapter and a serial data cable.
Use Java Communications API to connect to the Phone.
Then use the AT command to send and receive SMS messages. There is and example here. It is not specific to Nokia, but it is pretty much a standard command set.