易做图问题,两天了,没方法了, 大侠指点一下
org.smslib.TimeoutException:No response from device,这个问题如何解决,
SerialModemGateway gateway = new SerialModemGateway("modem.com"+ comNo, "COM" + comNo, 9600, "wavecom", "");
//gateway.setProtocol(Protocols.PDU);
//收件箱
gateway.setInbound(true);
//发件箱
gateway.setOutbound(true);
//ping码
gateway.setSimPin("0000");
try {
// 说是加上下面这句就可以,但我的加上也不行。
Service.getInstance().S.SERIAL_POLLING = true;
Service.getInstance().addGateway(gateway);
//服务启动
Service.getInstance().startService();
......
补充:Java , Java SE