- 浏览: 90421 次
- 性别:
- 来自: 烟台
最新评论
-
daxiaoli123:
1 http://sourceforge.net/projec ...
GCJ让Java程序脱离jre执行 -
zhangtongysu:
楼主 ,那个下载 怎么回事啊。
利用Ant和Eclipse有效地提高部署工作效率
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);
}
}
}
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);
}
}
}
发表评论
-
调试MAVEN项目appfuse-light-struts2-spring-jdbc-1.8的问题
2008-03-07 16:31 2284出现问题: Project appfuse-light-str ... -
MVC设计思想
2008-03-01 22:13 2143MVC英文即Model-View-Controll ... -
当前Java软件开发中几种认识误区(转)
2008-03-01 22:11 968软件的生命性 软件是有生命的,这可能是老调重弹了,但是因 ... -
给servlet写单元测试的总结(转)
2008-02-19 11:19 3545servlet的测试一般来说需要容器的支持,不是像通常的jav ... -
取得参数的几中形式
2008-02-18 12:54 881java -DSTOP.PORT=8080 -DSTOP.KE ... -
正则表达式
2008-02-18 12:34 899目录 本文目标 如何使 ... -
关于Java中类在构造对象时的初始化步骤详解
2008-02-18 12:17 2099很多人在学习Java的过程 ... -
Java连接各种数据库的实例
2008-02-18 12:13 1165一、jsp连接Oracle8/8i/9i数据库(用thin模式 ... -
为什么要使用接口编程(转)
2008-02-17 21:42 1283看了接口编程这篇文章, ... -
JAVA中浅复制与深复制
2008-02-17 21:38 7191.浅复制与深复制概念 ⑴浅复制(浅克隆) 被复制对象的所有变 ... -
appfuse结合eclipse开发流程
2008-02-17 21:33 1218Appfuse应用的核心在于ant ... -
使用Antlr和JfreeChart实现项目源代码行数计算图表
2008-02-17 21:30 1541Antlr的功能在我的其他文章里提到了就不多说了,JFreeC ... -
使用ANT协助开发java项目
2008-02-17 21:29 894ANT是Apache的开源项目,目前在java的项目开发中被广 ... -
利用Ant和Eclipse有效地提高部署工作效率
2008-02-17 21:26 1265本文主要介绍 Ant 在多 ... -
使用开源软件 Mantis 实施缺陷跟踪的成功实践
2008-02-17 21:22 1697内容摘要 中国开源 注:当前Mantis稳定发布版本为1.0. ... -
开源缺陷跟踪系统mantis安装指南
2008-02-17 21:14 18861. 简介 mantis(螳螂)是一个基于php/MySQL/ ... -
无所不能的“蚂蚁”-Ant(转)
2008-02-17 21:12 3232说他无所不能,好像有点夸张,但是用过Ant之后,感觉真的是只有 ... -
Java华为面试题
2008-02-17 21:08 1469第一部分:选择题 QUESTION NO: 1 1、publi ... -
java中读取Properties文件
2008-02-17 21:06 906ResourceBundle resourceBundle = ... -
Java范型
2008-02-17 21:04 1537从jdk1.5开始,Java中开始 ...
相关推荐
《短信息发送平台源代码详解》 在信息技术领域,短信息发送平台是企业与客户沟通的重要工具,尤其在营销、通知、验证等场景中扮演着关键角色。本篇将深入探讨一个基于Delphi开发的短信息发送平台源代码,帮助读者...
短信平台和短信网关是通信技术中的重要组成部分,主要用于企业或服务提供商向用户发送验证码、通知或者营销信息。短信平台通常是一个集成化的系统,允许用户通过图形化界面或者API接口进行批量短信发送、接收、管理...
标题中的“联通短信网关发送程序源码(C#)”指的是使用C#编程语言编写的软件,其功能是与中国联通的短信网关进行交互,实现短信的发送和接收状态报告。短信网关是通信运营商提供的接口,允许开发者通过特定协议发送...
短信网关接口源代码是开发通信应用的核心组成部分,特别是在电子购物类系统中,它负责处理短信的发送、接收以及与运营商的交互。本资源包含了实现这一功能的源代码,为开发者提供了一套实用的工具集。下面将详细介绍...
短信网关源代码是用于管理和发送短信的一种软件系统的核心组件,它在信息技术领域扮演着重要的角色,尤其是在企业级通信和客户服务中。短信网关能够连接移动运营商的网络,允许应用程序通过标准接口(如HTTP或SMPP)...
Java短信网关平台项目源代码是一个用于实现短信发送与接收功能的系统,它基于Java编程语言,通常包含多个模块,如API接口、消息队列、数据库连接、短信服务商对接等。下面将详细介绍这个项目的相关知识点。 1. **...
【短信接口短信网关源代码】是一个集合了多种编程语言实现的短信服务接口,包括ASP、PHP、ASP.NET和C#等。这个资源主要用于帮助开发者快速集成短信功能到他们的网站中,实现验证码发送、短信收发等核心业务需求。...
标题中的“短信网关接入程序源代码(SGIP协议)”是指一种用于与短信网关进行交互的软件系统,它的核心是实现了SGIP(Short Message Peer-to-Peer)协议。SGIP协议是一种通信协议,主要用于电信运营商的短信中心(SMSC...
该源代码实现了CMPP协议的上行和下行指令,使得开发者能够方便地在C#环境中与移动运营商的短信网关进行交互,实现短信的发送、接收和管理功能。 CMPP协议是专门为移动数据通信设计的,主要用于短信中心(SMSC)与...
短信网关接口源代码:口标准:客户端通过Tcp连接到服务器(211.162.36.89:8021, IP可能会变动,变动时,以www.pohoo.com网站公布的为准)。连接成功后客户端应首先发送注册串为:Login Name=【注册名】&Pwd=【注册...
【标题】"SMGP3.0电信短信网关源代码"是关于电信行业中短信服务的重要软件组件,主要用于处理和管理短信通信。这个源代码库包含了实现SMGP(Short Message Gateway Protocol)3.0版本的核心功能,是电信运营商进行大...
3. **发送请求**:调用TIdHTTP的Post方法,向新浪短信网关发送构造好的请求。 4. **处理响应**:网关接收到请求后,会返回一个响应,包含发送状态等信息。我们需要解析这个响应,判断短信是否发送成功。 5. **错误...
3、 通讯数据库表名:msgcomm.doc, 这是数据库表名的说明文档,内有ACCESS及SQL SERVER数据库生成文档4、 用户接口标准.txt, 这是网关收发数据的格式说明,存入数据库中的短信将最终转换成此格式并发送5、 ...
学习这部分源代码,开发者可以了解到如何与中国联通的短信网关进行交互,以及如何实现基于SGIP1.2协议的短信服务。这对于开发和维护与运营商对接的短信应用是非常有价值的,尤其是对于那些需要大量发送短信或者依赖...
这个"短信网关源代码(SP).rar"压缩包显然包含了实现短信网关功能的源代码,非常适合那些想要深入理解短信服务工作原理或者进行相关开发的IT专业人士。下面将详细介绍短信网关的相关知识点,并根据文件名"SpGateWay...
1. **网络通信**:发送短信涉及到网络通信,可能使用HTTP或HTTPS协议与短信网关进行交互。这通常通过`HttpClient`类来实现,它可以发送POST请求携带必要的短信内容和接收方信息到指定的服务器端点。 2. **API接口...
标题中的“简易短信网关示例 含代码”表明这是一个关于短信网关的编程实例,其中包含实现短信发送功能的源代码。短信网关是通信系统中的一个重要组件,它允许应用通过网络发送和接收短信,通常涉及到协议转换、路由...
3. **短信网关集成**:短信发送平台需要与多个短信网关提供商进行集成,如中国移动、中国联通、中国电信等。这涉及到HTTP、SMPP(Short Message Peer-to-Peer)等通信协议,以及相关的认证和加密机制。 4. **批量...