gpt4 book ai didi

java - 使用 Java 通过 USB gsm 调制解调器发送短信

转载 作者:行者123 更新时间:2023-12-01 09:49:03 25 4
gpt4 key购买 nike

最好的方法是什么?我读过相关内容,但大多数主题都已经过时了。大多数示例都使用“COM”端口,但我在 COM 连接(在设备管理器中)中找不到我的 USB 调制解调器,而不是在“网卡”中。

最佳答案

希望这段代码有帮助:

 package logic;

import com.harshadura.gsm.smsdura.GsmModem;

public class TestSMS {

private static String port = "COM3"; //Modem Port.
private static int bitRate = 115200; //this is also optional. leave as it is.
private static String modemName = "ZTE"; //this is optional.
private static String modemPin = "0000"; //Pin code if any have assigned to the modem.
private static String SMSC = "+9477000003"; //Message Center Number ex. Mobitel

public static void main(String[] args) throws Exception {
GsmModem gsmModem = new GsmModem();
GsmModem.configModem(port, bitRate, modemName, modemPin, SMSC);
gsmModem.Sender("+94712244555", "Test Message"); // (tp, msg)
}
}

完整的答案和详细信息是 at this article

关于java - 使用 Java 通过 USB gsm 调制解调器发送短信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37732558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com