자바 웹 프로젝트 는 어떻게 핸드폰 문자 로그 인 을 실현 합 니까?
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+"×tamp="+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 를 사용 하여 이 루어 진 것 을 보 여 줍 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.