자바 웹 프로젝트 는 어떻게 핸드폰 문자 로그 인 을 실현 합 니까?

핸드폰 번호 가 현재 프로젝트 에 로그 인 하 는 장면 이 매우 많 고 실현 하 는 것 도 어렵 지 않 습 니 다.오늘 우 리 는 함께 프레젠테이션 을 통 해 로그 인 과정 을 실현 합 니 다.
 
1.먼저 제3자 의 계 좌 를 등록 해 야 합 니 다.예 를 들 어 초 중 과학기술 등 이 있 고 그 다음 에 세 개의 매개 변수 값 을 받 아야 합 니 다.QUERAYPATH   ACCOUNT_SID       AUTH_TOKEN
2.인증 코드 류 getMessage.java 를 작성 합 니 다.

private static final String QUERAY_PATH="xxxx";
	private static final String ACCOUNT_SID="xxx";
	private static final String AUTH_TOKEN="xxx";
	/**
	 * @Title: getCode 
	 * @Description: TODO(       ) 
	 * @param @param phone
	 * @param @return      
	 * @return String      
	 * @throws
	 */
	public static String getCode(String phone){
		String ran = smsCode();
		String timestamp = getStamp();
		String sig = getMD5(ACCOUNT_SID, AUTH_TOKEN, timestamp); 
		String tamp = "      "+ran+",  {2}       ,      ,      。"; 
		OutputStreamWriter out = null;
		BufferedReader br = null;
		StringBuilder sb = new StringBuilder();
		try {
			URL url = new URL(QUERAY_PATH);
			HttpURLConnection connection = (HttpURLConnection) url.openConnection();
			connection.setRequestMethod("POST");
			connection.setDoInput(true);
			connection.setDoOutput(true);
			connection.setConnectTimeout(5000);
			connection.setReadTimeout(10000);
			connection.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
			out = new OutputStreamWriter(connection.getOutputStream(), "UTF-8");
			String args = getArgs(ACCOUNT_SID, tamp, phone, timestamp, sig, "JSON");
 			out.write(args);
 			out.flush();
 			
 			br = new BufferedReader(new InputStreamReader(connection.getInputStream(), "UTF-8"));
			String temp="";
			while ((temp=br.readLine())!=null) {
				sb.append(temp);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		
		JSONObject json = new JSONObject(sb.toString());
		String code = json.getString("respCode");
		String defaultrespcode = "00000"; 
		if(defaultrespcode.equals(code)){
			return ran;
		}else{
			return code;
		}
		
	}
	/**
	 * @Title: getArgs 
	 * @Description: TODO(      ) 
	 * @param @param accountSid
	 * @param @param smsContent
	 * @param @param to
	 * @param @param timestamp
	 * @param @param sig
	 * @param @param respDataType
	 * @param @return      
	 * @return String      
	 * @throws
	 */
	public static String getArgs(String accountSid,String smsContent,String to,String timestamp,String sig,String respDataType){
		return "accountSid="+accountSid+"&smsContent="+smsContent+"&to="+to+"&timestamp="+timestamp+"&sig="+sig+"&respDataType="+respDataType;	
	}
	
	/**
	 * @Title: getStamp 
	 * @Description: TODO(       ) 
	 * @param @return      
	 * @return String      
	 * @throws
	 */
	public static String getStamp(){
		return	new SimpleDateFormat("yyyyMMddHHmmss").format(new Date());
	}
	/**
	 * @Title: getMD5 
	 * @Description: TODO(sig   ) 
	 * @param @param sid
	 * @param @param token
	 * @param @param timestamp
	 * @param @return      
	 * @return String      
	 * @throws
	 */
	public static String getMD5(String sid,String token,String timestamp){
		StringBuilder sBuilder = new StringBuilder();
		String source = sid + token + timestamp; 
		try {
			MessageDigest instance = MessageDigest.getInstance("MD5");
			byte[] digest = instance.digest(source.getBytes());
			for (byte b : digest) {
				String hexString = Integer.toHexString(b&0xff);
				if(hexString.length()==1){
					sBuilder.append("0"+hexString);
				}else{
					sBuilder.append(hexString);
				}
			}
		} catch (NoSuchAlgorithmException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return sBuilder.toString();
	}
	/**
	 * @Title: smsCode 
	 * @Description: TODO(      ) 
	 * @param @return      
	 * @return String      
	 * @throws
	 */
	public static String smsCode(){
		String random = new Random().nextInt(1000000)+"";
		if(random.length()!=6){
			return smsCode();
		}else{
			return random;
		}
	}
servlet 작성

protected void doPost(HttpServletRequest req, HttpServletResponse resp)
			throws ServletException, IOException {
		resp.setCharacterEncoding("utf-8");
		String phone = req.getParameter("phone"); 
		String code = GetMessage.getCode(phone);
		//      
		HttpSession session = req.getSession();
		PrintWriter out = resp.getWriter();
		//          
		checkPhoneDao checkPhoneDao = new checkPhoneImpl();
		boolean results = checkPhoneDao.checkPhone(phone);
		if(!results){
			out.print(code);
			session.setAttribute("name", "phone");
		}else {
			out.print("         ");
		}
		out.close();
	}
4.dao 층 실현 방법

@Override
	public boolean checkPhone(String phone) {
		String sql = "select username from user where phone=?";
		List<Map<String, Object>> queryForList = DbUtil.queryForList(sql, phone);
		if(queryForList.isEmpty()){
			return true;
		}
		return false;
	}
여기까지 문자 로그 인 기능 이 실현 되 었 으 니 여러분 은 제 생각 대로 시도 해 보 세 요.주:어떤 파트너 들 은 프레임 기반 이 없 기 때문에 jsp+servlet+jdbc 를 사용 하여 이 루어 진 것 을 보 여 줍 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기