手机验证

package com.validate;

import java.io.IOException;
import java.lang.reflect.Method;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class BaseServlet extends HttpServlet {
 @Override
protected void service(HttpServletRequest request, HttpServletResponse response)
		throws ServletException, IOException {
	// TODO Auto-generated method stub
		request.setCharacterEncoding("UTF-8");
		response.setCharacterEncoding("UTF-8");
		String method=request.getParameter("method");
		Class clazz=this.getClass();
		try {
			Method m=clazz.getMethod(method, HttpServletRequest.class,HttpServletResponse.class);
			m.invoke(this, request,response);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}
package com.validate;

import java.security.MessageDigest;

public class CheckSumBuilder {
    // 计算并获取CheckSum
    public static String getCheckSum(String appSecret, String nonce, String curTime) {
        return encode("sha1", appSecret + nonce + curTime);
    }

    // 计算并获取md5值
    public static String getMD5(String requestBody) {
        return encode("md5", requestBody);
    }

    private static String encode(String algorithm, String value) {
        if (value == null) {
            return null;
        }
        try {
            MessageDigest messageDigest
                    = MessageDigest.getInstance(algorithm);
            messageDigest.update(value.getBytes());
            return getFormattedText(messageDigest.digest());
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
    private static String getFormattedText(byte[] bytes) {
        int len = bytes.length;
        StringBuilder buf = new StringBuilder(len * 2);
        for (int j = 0; j < len; j++) {
            buf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]);
            buf.append(HEX_DIGITS[bytes[j] & 0x0f]);
        }
        return buf.toString();
    }
    private static final char[] HEX_DIGITS = { '0', '1', '2', '3', '4', '5',
            '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
}



package com.validate;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;





import javax.servlet.http.HttpSession;

import net.sf.json.JSONObject;
import net.sf.json.groovy.GJson;

import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;

/**
 * 发送验证码
 * @author liuxuanlin
 *
 */
public class yanzheng extends BaseServlet {
    //发送验证码的请求路径URL
    private static final String
            SERVER_URL="https://api.netease.im/sms/sendcode.action";
    //网易云信分配的账号,请替换你在管理后台应用下申请的Appkey
    private static final String 
            APP_KEY="XXXXXXXXXX";
    //网易云信分配的密钥,请替换你在管理后台应用下申请的appSecret
    private static final String APP_SECRET="XXXXXXX";
    //随机数
    private static final String NONCE="01234";
    //短信模板ID
    private static final String TEMPLATEID="XXXXX";
    //手机号
    private static final String MOBILE="";
    //验证码长度,范围4~10,默认为4
    private static final String CODELEN="6";
    public static String sendMessage(String phone) throws Exception {
   	 //手机号
       String MOBILE=phone;
       DefaultHttpClient httpClient = new DefaultHttpClient();
       HttpPost httpPost = new HttpPost(SERVER_URL);
       String curTime = String.valueOf((new Date()).getTime() / 1000L);
       /*
        * 参考计算CheckSum的java代码,在上述文档的参数列表中,有CheckSum的计算文档示例
        */
       String checkSum = CheckSumBuilder.getCheckSum(APP_SECRET, NONCE, curTime);

       // 设置请求的header
       httpPost.addHeader("AppKey", APP_KEY);
       httpPost.addHeader("Nonce", NONCE);
       httpPost.addHeader("CurTime", curTime);
       httpPost.addHeader("CheckSum", checkSum);
       httpPost.addHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");

       // 设置请求的的参数,requestBody参数
       List<NameValuePair> nvps = new ArrayList<NameValuePair>();
       /*
        * 1.如果是模板短信,请注意参数mobile是有s的,详细参数配置请参考“发送模板短信文档”
        * 2.参数格式是jsonArray的格式,例如 "['13888888888','13666666666']"
        * 3.params是根据你模板里面有几个参数,那里面的参数也是jsonArray格式
        */
       nvps.add(new BasicNameValuePair("templateid", TEMPLATEID));
       nvps.add(new BasicNameValuePair("mobile", MOBILE));
       nvps.add(new BasicNameValuePair("codeLen", CODELEN));

       httpPost.setEntity(new UrlEncodedFormEntity(nvps, "utf-8"));

       // 执行请求
       HttpResponse response = httpClient.execute(httpPost);
       /*
        * 1.打印执行结果,打印结果一般会200、315、403、404、413、414、500
        * 2.具体的code有问题的可以参考官网的Code状态表
        */
       
		return EntityUtils.toString(response.getEntity(), "utf-8");  
   }

    public void yanzheng(HttpServletRequest req, HttpServletResponse resp)  throws Exception {
        String  yzm=req.getParameter("yzm");
        HttpSession session = req.getSession();
        
     if(yzm.equals(session.getAttribute("object"))){
        req.getRequestDispatcher("success.jsp").forward(req, resp);
        }else{
        	 req.getRequestDispatcher("Myyanzheng.jsp").forward(req, resp);
        }
    }
    public void huoqu(HttpServletRequest req,HttpServletResponse resp) throws Exception {

    	String phone=req.getParameter("MOBILE");
    	resp.setContentType("text/html;charset=UTF-8");
    	req.setAttribute("MOBILE", MOBILE);
    	System.out.println(phone);
    	String  myyz=this.sendMessage(phone);
        JSONObject json = JSONObject.fromObject(myyz);  
    	String object = json.getString("obj");  
        HttpSession session = req.getSession();
        session.setAttribute("object", object);
      
    	 req.getRequestDispatcher("Myyanzheng.jsp").forward(req, resp);
    }

    
}

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>

  </head>
  
  <body>
  
  
  <form action="${pageContext.request.contextPath}/yanzheng?method=huoqu" method="post">
  手机号<input type="text" name="MOBILE" value="${ MOBILE}" id="myphone" >
  <input type="submit"  value="点击获取验证码">
 </form>
 <form action="${pageContext.request.contextPath}/yanzheng?method=yanzheng" method="post">
  验证码<input type="text" name="yzm">
  <br>
  <input type="submit" value="提交">
</form>
  </body>
</html>




  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值