Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - sendSMS
Search - sendSMS - List

Update : 2025-03-14 Size : 267.43kb Publisher :

使用Delphi发短信息程序源代码
Update : 2025-03-14 Size : 291.78kb Publisher :

DL : 0
发送短信息的程序,通过网络可以多次发送-send text messages procedure for the adoption of the Internet can send multiple
Update : 2008-10-13 Size : 267.69kb Publisher :

DL : 0
Send SMS useing Com,it is simple
Update : 2008-10-13 Size : 224.63kb Publisher : tony

先到新浪网站注册,可用此程序发送手机短信息,一次可以发送多人。
Update : 2008-10-13 Size : 242.29kb Publisher : 马永斌

台灣簡訊網發送手機簡訊-Taiwan Network newsletter sent mobile phone messages
Update : 2008-10-13 Size : 238.38kb Publisher : 李大

用一个开源码ASCII ENCODE,DECODE,来发送ASCII短信
Update : 2008-10-13 Size : 17.04kb Publisher : 陈青

1、将jre文件夹复制到你本机所在的JDK下覆盖掉全部jre文件夹

2、将lib文件夹复制到你项目所在的lib,添加对应lib


import org.smslib.IOutboundMessageNotification;
import org.smslib.Library;
import org.smslib.MessageEncodings;
import org.smslib.MessageProtocols;
import org.smslib.OutboundMessage;
import org.smslib.Service;
import org.smslib.modem.SerialModemGateway;
import java.util.List;


public class SendSms {
    public SendSms() {
    }


    public void sendSMS(String[] phoneNumber) throws Exception {
        Service srv;
        OutboundMessage msg;

        OutboundNotification outboundNotification = new OutboundNotification();

        srv = new Service();
        SerialModemGateway gateway = new SerialModemGateway("modem.com1",
                "COM1", 9600, null, null);
        gateway.setInbound(true);
        gateway.setOutbound(true);
        gateway.setSimPin("0000");
        gateway.setOutboundNotification(outboundNotification);
        gateway.setProtocol(MessageProtocols.PDU);
        srv.addGateway(gateway);

        try {
            srv.startService();

            for (int i = 0; i < phoneNumber.length; i++) {
                msg = new OutboundMessage(phoneNumber[i], "您有会议待处理,请登陆查看!");
                msg.setEncoding(MessageEncodings.ENCUCS2);
                srv.sendMessage(msg);

            }

        } finally {
            srv.stopService();
        }
    }

    public class OutboundNotification implements IOutboundMessageNotification {
        public void process(String gatewayId, OutboundMessage msg) {
            System.out.println("Outbound handler called from Gateway: " +
                               gatewayId);
            System.out.println(msg);
        }
    }


    public static void main(String args[]) {
        SendSms app = new SendSms();
        try {
            app.doIt();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}
 


Update : 2009-01-03 Size : 1015.8kb Publisher : idhuanghao

DL : 0
使用Delphi发短信息程序源代码-The use of short message issued Delphi source code
Update : 2025-03-14 Size : 292kb Publisher : 郑章孝

先到新浪网站注册,可用此程序发送手机短信息,一次可以发送多人。-Sina site first registration, this procedure can be used to send mobile phone text messages can be sent more than once.
Update : 2025-03-14 Size : 242kb Publisher : 马永斌

短信平台程序,可以收发手机短信,增加附加码功能-SMS platform program, you can send and receive SMS, increasing VerifyCode function
Update : 2025-03-14 Size : 129kb Publisher : 黎仙金

DL : 0

Update : 2025-03-14 Size : 251kb Publisher : hnswxo

wm系统收发送短信的软件,虽然wm上已经有了,但是这个貌似更快-wm Send message receipt software, although the wm have been on, but the seemingly faster
Update : 2025-03-14 Size : 103kb Publisher : wanjianwei

DL : 0
Motorola G24 SMS Example
Update : 2025-03-14 Size : 2kb Publisher : ilkay kozak

中国电信网关 sms mms  接口:SendSMS  SendSms:应用发送短消息;  GetSmsDeliveryStatus:应用获取短消息发送状态  接口:SmsNotification  notifySmsReception:网关将发送到特定地址的短消息告知应用; notifySmsDeliveryStatus:网关将短消息递交状态报告给应用;  接口:ReceiveSMS  GetReceivedSms:应用获取指定标识的短消息; -China Telecom gateway sms mms  Interface: SendSMS  SendSms: Application to send short message  GetSmsDeliveryStatus: application to obtain the status of the short messaging interface  : SmsNotification  notifySmsReception: Gateway Address will be sent to a specific application of the short message to inform  notifySmsDeliveryStatus: Short Message Gateway will submit status reports to the application  Interface: ReceiveSMS  GetReceivedSms: application access to the designated SMS logo
Update : 2025-03-14 Size : 887kb Publisher : jq

通过短信服务器发送短信,开发语言c++,ide vc6-Through the SMS server to the designated mobile phone number to send text messages
Update : 2025-03-14 Size : 6.83mb Publisher : longlong

sends SMS information to another mobile phone
Update : 2025-03-14 Size : 9kb Publisher : amdp

This code is send sms with c#
Update : 2025-03-14 Size : 5.88mb Publisher : payam

这是酷派手机后台发送短信的原代码,主要是wince平台,有涉及函数指针相关操作-This is Cool mobile phone to send text messages back the original code, mainly wince platform related operations involving function pointers
Update : 2025-03-14 Size : 49kb Publisher : luoguangxian

DL : 0
调用的接口如下(eg): _LIT(KSMSAddress,"13600001111") _LIT(KSMSContent,"test Test ,Hello") TBuf<15> address(KSMSAddress) TBuf<120> content(KSMSContent) CVideoEggSmsEngine* smsEngine=CVideoEggSmsEngine::NewL() smsEngine->SetToAddrress(address) smsEngine->SetMsgContent(content) smsEngine->Start() 缺点: 1.没有实现群发功能 2.没有回调 3.没有注释 系统需要添加的库文件: LIBRARY msgs.lib sendui.lib etext.lib gsmu.lib smcm.lib 能力: CAPABILITY NetworkServices ReadDeviceData ReadUserData UserEnvironment WriteDeviceData WriteUserData SwEvent 不知道到底需要哪些能力,就加了好多 -SendSMS
Update : 2025-03-14 Size : 3kb Publisher : threestep
« 12 3 4 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.