• java发送短信验证码的功能实现


    总结一下发送短信验证码的功能实现

    (题外话:LZ是在腾讯云买的第三方(山东鼎信)短信服务平台的接口,1块钱20次的套餐来练手,哈哈,给他们打个广告,有需要的可以去购买哈,下面是购买链接短信服务平台购买链接哦

    1.新建一个maven项目

     

    2.pom.xml文件

    <?xml version="1.0" encoding="UTF-8"?>
    <!--
      Licensed to the Apache Software Foundation (ASF) under one
      or more contributor license agreements.  See the NOTICE file
      distributed with this work for additional information
      regarding copyright ownership.  The ASF licenses this file
      to you under the Apache License, Version 2.0 (the
      "License"); you may not use this file except in compliance
      with the License.  You may obtain a copy of the License at
    
       http://www.apache.org/licenses/LICENSE-2.0
    
      Unless required by applicable law or agreed to in writing,
      software distributed under the License is distributed on an
      "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
      KIND, either express or implied.  See the License for the
      specific language governing permissions and limitations
      under the License.
    -->
    <!-- $Id: pom.xml 642118 2008-03-28 08:04:16Z reinhard $ -->
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    
        <modelVersion>4.0.0</modelVersion>
        <packaging>war</packaging>
    
        <name>message</name>
        <groupId>com.cyf</groupId>
        <artifactId>message</artifactId>
        <version>1.0-SNAPSHOT</version>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.mortbay.jetty</groupId>
                    <artifactId>maven-jetty-plugin</artifactId>
                    <version>6.1.7</version>
                    <configuration>
                        <connectors>
                            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
                                <port>8888</port>
                                <maxIdleTime>30000</maxIdleTime>
                            </connector>
                        </connectors>
                        <webAppSourceDirectory>${project.build.directory}/${pom.artifactId}-${pom.version}
                        </webAppSourceDirectory>
                        <contextPath>/</contextPath>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    
        <dependencies>
    
            <dependency>
                <groupId>org.apache.httpcomponents</groupId>
                <artifactId>httpclient</artifactId>
                <version>4.2.4</version>
            </dependency>
        </dependencies>
    
    </project>

    3.SmsTest.java

    package com;
    
    import org.apache.commons.codec.binary.Base64;
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpResponse;
    import org.apache.http.client.HttpClient;
    import org.apache.http.client.methods.HttpGet;
    import org.apache.http.impl.client.DefaultHttpClient;
    import org.apache.http.util.EntityUtils;
    
    import javax.crypto.Mac;
    import javax.crypto.SecretKey;
    import javax.crypto.spec.SecretKeySpec;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.Locale;
    import java.util.TimeZone;
    
    /**
     * 短信发送实例
     * java项目需要jdk1.7及以上版本,需要引用httpClient4.2.4及以上版本
     * 该实例为maven项目,引用httpClient4.2.4可使用pom.xml直接引用
     *
     * @author txy
     * @date 2018/01/30.
     */
    public class SmsTest {
        /**
         * 腾讯云交易id
         * 必填项
         */
        private static String SECRET_ID = "";
        /**
         * 腾讯云交易key
         * 必填项
         */
        private static String SECRET_KEY = "";
    
    
        public static void main(String[] args) throws Exception {
            /**
             * api发送接口
             * 必填项
             */
            String host = "http://service-4xrmju6b-1255399658.ap-beijing.apigateway.myqcloud.com";
            String path = "/release/dxsms";
            /**
             * 您需要发送手机号
             * 必填项
             */
            String mobile = "176********";
            /**
             * 模板id,联系客服申请通过的模板,
             * 例:TP1801042是已申请好的模板:您的验证码是#code#
             * 必填项
             */
            String tpl_id = "TP1801042";
            /**
             * 与模板中对应的变量,有多个变量则使用","隔开
             * 例:短信模板为“您的电话#telephone#成功缴费#money#元,如未到账可直接拨打客服电话#phone#”,
             * 则param="telephone:13288888888,money:100,phone:400-888888"
             *
             */
            String param = "code:1234";
            String url = host + path + "?mobile=" + mobile + "&tpl_id=" + tpl_id + "&param=" + param;
            /**
             * httpClient4.2.4及以上版本
             */
            HttpClient httpClient = new DefaultHttpClient();
            // get method
            HttpGet httpGet = new HttpGet(url);
            Date date = new Date();
            httpGet.setHeader("Date", gmtTIME(date));
            String timeStr = "date: " + gmtTIME(date);
            String sign = hmacSHA1Encrypt(timeStr, SECRET_KEY);
            String authStr = "hmac id="" + SECRET_ID + "",algorithm="hmac-sha1",headers="date", signature="" + sign + """;
            httpGet.addHeader("Authorization", authStr);
            //response
            HttpResponse response = null;
            try {
                response = httpClient.execute(httpGet);
            } catch (Exception e) {
            }
            //get response into String
            String temp = "";
            try {
                HttpEntity entity = response.getEntity();
                temp = EntityUtils.toString(entity, "UTF-8");
                //输出返回值
                System.out.println(temp);
            } catch (Exception e) {
            }
    
    
        }
    
        /**
         * HmacSHA1加密
         *
         * @param encryptText 加密字符串
         * @param encryptKey  加密key
         * @return
         * @throws Exception
         */
        private static String hmacSHA1Encrypt(String encryptText, String encryptKey) throws Exception {
            byte[] data = encryptKey.getBytes("UTF-8");
            //根据给定的字节数组构造一个密钥,第二参数指定一个密钥算法的名称
            SecretKey secretKey = new SecretKeySpec(data, "HmacSHA1");
            //生成一个指定 Mac 算法 的 Mac 对象
            Mac mac = Mac.getInstance("HmacSHA1");
            //用给定密钥初始化 Mac 对象
            mac.init(secretKey);
    
            byte[] text = encryptText.getBytes("UTF-8");
            //完成 Mac 操作,base64编码
            String sign = Base64.encodeBase64String(mac.doFinal(text));
            return sign;
        }
    
    
        /**
         * 获得格林威治时间
         *
         * @param date 时间
         * @return
         */
        private static String gmtTIME(Date date) {
            SimpleDateFormat sdf = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss 'GMT'", Locale.US);
            // 设置时区为GMT
            sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
            String time = sdf.format(date.getTime());
            return time;
        }
    
    }

     4.完成

  • 相关阅读:
    【C#学习笔记】 IDisposable 接口
    【C#学习笔记】 List.AddRange 方法
    Request a certificate from a certificate vendor
    How to install your SSL Certificate to your Windows Server
    How to generate a CSR in Microsoft IIS 7
    我爱你 肖厦
    OAuth2.0协议之新浪微博接口演示
    重写mouseEvent 事件 怎么实现自定义的无边框窗口移动
    原文地址:Qt数据库总结 作者:ImmenseeT
    QT+MySQL图片插入数据库并显示 2013-03-12 13:58:52
  • 原文地址:https://www.cnblogs.com/feifeicui/p/8573390.html
Copyright © 2020-2023  润新知