阿里云发送短信工具类

前段时间,写了一个调用阿里云短信接口发送短信的功能,今天就分享一下工具类

import java.util.HashMap;

import net.sf.json.JSONObject;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;

/**
 * 阿里云发送短信工具类
 * 
 * @author Administrator
 * 
 */
public class MobileMessageUtil {

	// 产品名称:云通信短信API产品,开发者无需替换
	private static final String product = "Dysmsapi";
	// 产品域名,开发者无需替换
	private static final String domain = "dysmsapi.aliyuncs.com";

	private static final Logger logger = LoggerFactory
			.getLogger(MobileMessageUtil.class);

	public static String getAccessKeyId() {
		return PropertyUtil.getProperty("accessKeyId");
	}

	public static String getAccessKeySecret() {
		return PropertyUtil.getProperty("accessKeySecret");
	}

	public static String getSignName() {
		return PropertyUtil.getProperty("signName");
	}


	public static String getDefaultConnectTimeout() {
		return PropertyUtil.getProperty("defaultConnectTimeout");
	}

	public static String getDefaultReadTimeout() {
		return PropertyUtil.getProperty("defaultReadTimeout");
	}
	public static String getDkSigningTempleteCode() {
		return PropertyUtil.getProperty("DKSIGNING");
	}

	public static String getDkRescissionTempleteCode() {
		return PropertyUtil.getProperty("DKRESCISSION");
	}

	public static SendSmsResponse sendSms(String mobile, String templateParam,
			String templateCode) {
		SendSmsResponse sendSmsResponse = null;
		logger.info("[发送短信工具类] 读取配文件参数为:accessKeyId="
				+ MobileMessageUtil.getAccessKeyId() + " accessKeySecret="
				+ MobileMessageUtil.getAccessKeySecret() + " signName="
				+ MobileMessageUtil.getSignName()
				+ " getDefaultConnectTimeout="
				+ MobileMessageUtil.getDefaultConnectTimeout()
				+ " defaultReadTimeout="
				+ MobileMessageUtil.getDefaultReadTimeout());
		try {
			logger.info("[发送短信工具类] 发送短信接收的参数为:mobile=" + mobile
					+ " templateParam=" + templateParam + " templateCode="
					+ templateCode);
			// 可自助调整超时时间
			System.setProperty("sun.net.client.defaultConnectTimeout",
					MobileMessageUtil.getDefaultConnectTimeout());
			System.setProperty("sun.net.client.defaultReadTimeout",
					MobileMessageUtil.getDefaultReadTimeout());

			// 初始化acsClient,暂不支持region化
			IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou",
					MobileMessageUtil.getAccessKeyId(),
					MobileMessageUtil.getAccessKeySecret());
			DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product,
					domain);
			IAcsClient acsClient = new DefaultAcsClient(profile);

			// 组装请求对象-具体描述见控制台-文档部分内容
			SendSmsRequest request = new SendSmsRequest();

			// 必填:待发送手机号
			request.setPhoneNumbers(mobile);
			// 必填:短信签名-可在短信控制台中找到
			request.setSignName(MobileMessageUtil.getSignName());
			// 必填:短信模板-可在短信控制台中找到
			request.setTemplateCode(templateCode);

			// 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
			request.setTemplateParam(templateParam);
			// 选填-上行短信扩展码(无特殊需求用户请忽略此字段)
			// request.setSmsUpExtendCode("90997");

			// 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
			request.setOutId("yourOutId");

			// hint 此处可能会抛出异常,注意catch
			sendSmsResponse = acsClient.getAcsResponse(request);
			
		} catch (Exception e) {
			logger.info("[发送短信工具类] 调用发送短信方法异常 异常信息为:" + e.getMessage());
			e.printStackTrace();
		}
		return sendSmsResponse;
	}
	
	public static void main(String[] args) {
		HashMap<String, String> params=new HashMap<String,String>();
		params.put("customerName", "张三");
		params.put("bizName", "崇文门");
		params.put("customerPhone", "1523****34");
		String templateParam=JSONObject.fromObject(params).toString(); 
		// 发短信
				SendSmsResponse response = sendSms(
						"152****334", templateParam,MobileMessageUtil.getDkSigningTempleteCode());
				System.out.println("短信接口返回的数据----------------");
				System.out.println("Code=" + response.getCode());
				System.out.println("Message=" + response.getMessage());
				System.out.println("RequestId=" + response.getRequestId());
				System.out.println("BizId=" + response.getBizId());
	}
	
}

其中有一个读取配置文件Property的工具类 如下

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class PropertyUtil {
	
	private static final Logger logger = LoggerFactory.getLogger(PropertyUtil.class);
    private static Properties props;
    static{
        loadProps();
    }

    synchronized static private void loadProps(){
        logger.info("开始加载properties文件内容.......");
        props = new Properties();
        InputStream in = null;
        try {
        	//第一种,通过类加载器进行获取properties文件流
            in = PropertyUtil.class.getClassLoader().getResourceAsStream("aliyun_sendmsg.properties");
            // <!--第二种,通过类进行获取properties文件流-->
            //in = PropertyUtil.class.getResourceAsStream("/jdbc.properties");
            props.load(in);
        } catch (FileNotFoundException e) {
            logger.error("jdbc.properties文件未找到");
        } catch (IOException e) {
            logger.error("出现IOException");
        } finally {
            try {
                if(null != in) {
                    in.close();
                }
            } catch (IOException e) {
                logger.error("jdbc.properties文件流关闭出现异常");
            }
        }
        logger.info("加载properties文件内容完成...........");
        logger.info("properties文件内容:" + props);
    }

    public static String getProperty(String key){
        if(null == props) {
            loadProps();
        }
        return props.getProperty(key);
    }

    public static String getProperty(String key, String defaultValue) {
        if(null == props) {
            loadProps();
        }
        return props.getProperty(key, defaultValue);
    }

}

  • 3
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值