`
lylyb
  • 浏览: 90447 次
  • 性别: Icon_minigender_1
  • 来自: 烟台
社区版块
存档分类
最新评论

短信网关发送部分源代码

    博客分类:
  • JAVA
阅读更多
package com.etonenet.iiie.sdk;

import java.sql.Timestamp;
import java.util.LinkedList;

/**
*Feb 20, 2007
* Zhou JianGuo
* 小白
* 中国电信上海技术研究院
* MSN:zhuojianguo_leo@hotmail.com
*/
public abstract class Sender {

protected int    status = -1;
protected String desc = null;
protected String messageId = null;

protected String user = null;
protected String password = null;

protected String serviceType = null;
protected String payer = null;
protected Timestamp time = null;
protected int esmClass = 0;
protected int protocolId = 0;
protected byte[] sm = null;
protected int dataCoding = 0;

protected String url = null;

protected int priorityFlag = 1;

protected boolean debug = true;

public boolean smc = false;

public void setDebug(boolean value) {
  debug = value;
}

public void setURL(String url) {
  this.url = url;
}

public String getURL() {
  return url;
}

public void setProtocolId(int id) {
  protocolId = id;
}

public int getProtocolId() {
  return protocolId;
}

public void setShortMessage(byte[] sm, int dataCoding, int esmClass, int protocolId) {
  this.sm = sm;
  this.dataCoding = dataCoding;
  this.esmClass = esmClass;
  this.protocolId = protocolId;
}

/**
  * Set service type.
  *
  * @param serviceType service type, default null.
  */
public void setServiceType(String serviceType) {
  this.serviceType = serviceType;
}


public void setSmc(boolean v) {
  smc = v;
}

public boolean getSmc() {
  return smc;
}

/**
  * Send sms send time.
  *
  * @param time timstamp, string format "yyyy-MM-dd HH:mm:ss"
  */
public void setTime(Timestamp time) {
  this.time = time;
}

public Timestamp getTime() {
  return time;
}
/**
  * Set the user.
  *
  * @param user the user name.
  */
public void setUser(String user) {
  this.user = user;
}

public String getUser() { return user; }

/**
  * Set the password of this user. if the length of password large 32. it will trim to 32.
  *
  * @param password user password.
  */
public void setPassword(String password) {
  if (password == null) {
   this.password = "";
  } else {
   if (password.length() > 32) {
    this.password = password.substring(0, 32);
   } else {
    this.password = password;
   }
  }
}

public String getPassword() {
  return password;
}

/**
  * Set fee information
  *
  * @param payer default null. must at international format.
  */
public void setPayer(String payer) {
  this.payer = payer;
}

public String getPayer() {
  return payer;
}

public void setPriorityFlag(int pf) {
  priorityFlag = pf;
}

public int getPriorityFlag() {
  return priorityFlag;
}

/**
  * Get last post status.
  */
public int getStatus() {
  return status;
}

public String getDescription() {
  return desc;
}

public String getMessageId() {
  return messageId;
}

/**
  * Send sms to special addr through etonenet sms server.
  *
  * @param addr target phone number
  */
public abstract int send(String addr) throws Exception;

static char baseTable[] = {
  'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P',
  'Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f',
  'g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v',
  'w','x','y','z','0','1','2','3','4','5','6','7','8','9','+','/'
    };

public static void base64(byte[] arr, StringBuffer sb) {

  byte bytes[] = arr;
  int n = arr != null ? arr.length : 0;

  if (n < 1) return;          // no bytes to encode!?!

  byte buf[] = new byte[4];   // array of base64 characters

  int n3byt      = n / 3;     // how 3 bytes groups?
  int nrest      = n % 3;     // the remaining bytes from the grouping
  int k          = n3byt * 3; // we are doing 3 bytes at a time
  int linelength = 0;         // current linelength
  int i          = 0;         // index

  // do the 3-bytes groups ...
  while ( i < k ) {
   buf[0]= (byte)((bytes[i] & 0xFC) >> 2);
   buf[1]= (byte)(((bytes[i] & 0x03)  << 4)|((bytes[i+1] & 0xF0)>> 4));
   buf[2]= (byte)(((bytes[i+1] & 0x0F)<< 2)|((bytes[i+2] & 0xC0)>> 6));
   buf[3]= (byte)(bytes[i+2] & 0x3F);

   sb.append(baseTable[buf[0]]);
   sb.append(baseTable[buf[1]]);
   sb.append(baseTable[buf[2]]);
   sb.append(baseTable[buf[3]]);

     i += 3;
  }

  // deals with with the padding ...
  if (nrest==2) {
   // 2 bytes left
   buf[0] = (byte)(( bytes[k] & 0xFC)   >> 2);
   buf[1] = (byte)(((bytes[k] & 0x03)   << 4) |
    ((bytes[k+1] & 0xF0) >> 4));
   buf[2] = (byte)(( bytes[k+1] & 0x0F) << 2);
  }
  else if (nrest==1) {
   // 1 byte left
   buf[0] = (byte)((bytes[k] & 0xFC) >> 2);
   buf[1] = (byte)((bytes[k] & 0x03) << 4);
  }
  if (nrest > 0) {
   // send the padding
   sb.append(baseTable[buf[0]]);
   sb.append(baseTable[buf[1]]);
   // Thanks to R. Claerman for the bug fix here!
   if (nrest==2) {
    sb.append(baseTable[buf[2]]);
   }
   else {
    sb.append('=');
   }
   sb.append('=');
  }
  }

/**
  * Send(group send) message to multi phones.
  *
  * @param list phone number list
  */
public void send(LinkedList list) throws Exception {
  for(int i = 0; i < list.size(); i ++) {
   String s = (String)list.get(i);
   send(s);
  }
}

}


分享到:
评论

相关推荐

    短信息发送平台源代码

    《短信息发送平台源代码详解》 在信息技术领域,短信息发送平台是企业与客户沟通的重要工具,尤其在营销、通知、验证等场景中扮演着关键角色。本篇将深入探讨一个基于Delphi开发的短信息发送平台源代码,帮助读者...

    短信平台 短信网关 源代码 C++源码

    短信平台和短信网关是通信技术中的重要组成部分,主要用于企业或服务提供商向用户发送验证码、通知或者营销信息。短信平台通常是一个集成化的系统,允许用户通过图形化界面或者API接口进行批量短信发送、接收、管理...

    联通短信网关发送程序源码(C#)

    标题中的“联通短信网关发送程序源码(C#)”指的是使用C#编程语言编写的软件,其功能是与中国联通的短信网关进行交互,实现短信的发送和接收状态报告。短信网关是通信运营商提供的接口,允许开发者通过特定协议发送...

    短信网关接口源代码

    短信网关接口源代码是开发通信应用的核心组成部分,特别是在电子购物类系统中,它负责处理短信的发送、接收以及与运营商的交互。本资源包含了实现这一功能的源代码,为开发者提供了一套实用的工具集。下面将详细介绍...

    短信网关源代码

    短信网关源代码是用于管理和发送短信的一种软件系统的核心组件,它在信息技术领域扮演着重要的角色,尤其是在企业级通信和客户服务中。短信网关能够连接移动运营商的网络,允许应用程序通过标准接口(如HTTP或SMPP)...

    JAVA短信网关平台项目源代码

    Java短信网关平台项目源代码是一个用于实现短信发送与接收功能的系统,它基于Java编程语言,通常包含多个模块,如API接口、消息队列、数据库连接、短信服务商对接等。下面将详细介绍这个项目的相关知识点。 1. **...

    短信接口短信网关源代码

    【短信接口短信网关源代码】是一个集合了多种编程语言实现的短信服务接口,包括ASP、PHP、ASP.NET和C#等。这个资源主要用于帮助开发者快速集成短信功能到他们的网站中,实现验证码发送、短信收发等核心业务需求。...

    短信网关接入程序源代码(SGIP协议)

    标题中的“短信网关接入程序源代码(SGIP协议)”是指一种用于与短信网关进行交互的软件系统,它的核心是实现了SGIP(Short Message Peer-to-Peer)协议。SGIP协议是一种通信协议,主要用于电信运营商的短信中心(SMSC...

    cmpp3.0移动短信网关c#源代码

    该源代码实现了CMPP协议的上行和下行指令,使得开发者能够方便地在C#环境中与移动运营商的短信网关进行交互,实现短信的发送、接收和管理功能。 CMPP协议是专门为移动数据通信设计的,主要用于短信中心(SMSC)与...

    短信网关接口源代码+demo

    短信网关接口源代码:口标准:客户端通过Tcp连接到服务器(211.162.36.89:8021, IP可能会变动,变动时,以www.pohoo.com网站公布的为准)。连接成功后客户端应首先发送注册串为:Login Name=【注册名】&Pwd=【注册...

    SMGP3.0电信短信网关源代码

    【标题】"SMGP3.0电信短信网关源代码"是关于电信行业中短信服务的重要软件组件,主要用于处理和管理短信通信。这个源代码库包含了实现SMGP(Short Message Gateway Protocol)3.0版本的核心功能,是电信运营商进行大...

    SendSMS (新浪短信网关发送短信)

    3. **发送请求**:调用TIdHTTP的Post方法,向新浪短信网关发送构造好的请求。 4. **处理响应**:网关接收到请求后,会返回一个响应,包含发送状态等信息。我们需要解析这个响应,判断短信是否发送成功。 5. **错误...

    短信网关源代码(2.0.3)

    3、 通讯数据库表名:msgcomm.doc, 这是数据库表名的说明文档,内有ACCESS及SQL SERVER数据库生成文档4、 用户接口标准.txt, 这是网关收发数据的格式说明,存入数据库中的短信将最终转换成此格式并发送5、 ...

    中国联通短信网关接入程序源代码(SGIP1.2协议)

    学习这部分源代码,开发者可以了解到如何与中国联通的短信网关进行交互,以及如何实现基于SGIP1.2协议的短信服务。这对于开发和维护与运营商对接的短信应用是非常有价值的,尤其是对于那些需要大量发送短信或者依赖...

    短信网关源代码(SP).rar

    这个"短信网关源代码(SP).rar"压缩包显然包含了实现短信网关功能的源代码,非常适合那些想要深入理解短信服务工作原理或者进行相关开发的IT专业人士。下面将详细介绍短信网关的相关知识点,并根据文件名"SpGateWay...

    发送手机短信的demo源代码

    1. **网络通信**:发送短信涉及到网络通信,可能使用HTTP或HTTPS协议与短信网关进行交互。这通常通过`HttpClient`类来实现,它可以发送POST请求携带必要的短信内容和接收方信息到指定的服务器端点。 2. **API接口...

    简易短信网关示例 含代码

    标题中的“简易短信网关示例 含代码”表明这是一个关于短信网关的编程实例,其中包含实现短信发送功能的源代码。短信网关是通信系统中的一个重要组件,它允许应用通过网络发送和接收短信,通常涉及到协议转换、路由...

    C#+短信发送平台源代码

    3. **短信网关集成**:短信发送平台需要与多个短信网关提供商进行集成,如中国移动、中国联通、中国电信等。这涉及到HTTP、SMPP(Short Message Peer-to-Peer)等通信协议,以及相关的认证和加密机制。 4. **批量...

Global site tag (gtag.js) - Google Analytics