發(fā)短信這個(gè)功能我就不說(shuō)了 你自己查下吧
創(chuàng)新互聯(lián)專(zhuān)注于企業(yè)成都營(yíng)銷(xiāo)網(wǎng)站建設(shè)、網(wǎng)站重做改版、綏濱網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5網(wǎng)站設(shè)計(jì)、商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為綏濱等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
1、首先生成一串隨機(jī)數(shù) ,然后發(fā)給那個(gè)手機(jī)號(hào),然后用手機(jī)號(hào)碼作為key 隨機(jī)數(shù)作為value存放在redis中,設(shè)置失效時(shí)間(一般就半個(gè)小時(shí)左右吧)
2、用戶(hù)收到短信后 在頁(yè)面中輸入驗(yàn)證碼, 然后到后臺(tái) 根據(jù)用戶(hù)手機(jī)號(hào)碼 取出之前存的隨機(jī)數(shù)驗(yàn)證碼 進(jìn)行對(duì)比,如果一致就通過(guò) 不然就驗(yàn)證碼錯(cuò)誤。
這個(gè)首先你要確定一下短信平臺(tái),他們會(huì)給你提供短信實(shí)現(xiàn)的接口文檔。
比如:
public static String doPost(String reqUrl, Map parameters, String recvEncoding)
{
HttpURLConnection url_con = null;
String responseContent = null;
try
{
StringBuffer params = new StringBuffer();
Iterator iter = parameters.entrySet().iterator();
while (iter
.hasNext())
{
Map.Entry element = (Map.Entry)iter.next();
params.append(element.getKey().toString());
params.append("=");
params.append(URLEncoder.encode(element.getValue().toString(),
requestEncoding));
params.append("");
}
if (params.length() 0)
{
params = params.deleteCharAt(params.length() - 1);
}
URL url = new URL(reqUrl);
url_con = (HttpURLConnection)url.openConnection();
url_con.setRequestMethod("POST");
System.setProperty("sun點(diǎn)虐 .client.defaultConnectTimeout",
String.valueOf(connectTimeOut));
System.setProperty("sun點(diǎn)虐 .client.defaultReadTimeout",
String.valueOf(readTimeOut));
url_con.setDoOutput(true);
byte[] b = params.toString().getBytes();
url_con.getOutputStream().write(b, 0, b.length);
url_con.getOutputStream().flush();
url_con.getOutputStream().close();
InputStream in = url_con.getInputStream();
BufferedReader rd = new BufferedReader(
new InputStreamReader(in,
recvEncoding));
String tempLine = rd.readLine();
StringBuffer tempStr = new StringBuffer();
String crlf = System.getProperty("line.separator");
while (tempLine != null)
{
tempStr.append(tempLine);
tempStr.append(crlf);
tempLine = rd.readLine();
}
responseContent = tempStr.toString();
rd.close();
in.close();
}
catch (IOException localIOException)
{
}
finally
{
if (url_con != null)
{
url_con.disconnect();
}
}
return responseContent;
}
public static String sendTelCode(String mobile,String telcode){
MapString ,String map = new HashMapString ,String();
map.put("account", "Babo");
map.put("mobile", mobile);
map.put("pswd", "D3dddD");
try {
map.put("msg", java點(diǎn)虐 .URLEncoder.encode("您的驗(yàn)證碼是"+telcode+",若非本人操作請(qǐng)忽略","utf-8"));
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String getValue = doPost("", map, "UTF-8");
System.out.println(getValue);
return getValue;
}
1、創(chuàng)建一個(gè)Http的模擬請(qǐng)求工具類(lèi),然后寫(xiě)一個(gè)POST方法或者GET方法
/** * 文件說(shuō)明 * @Description:擴(kuò)展說(shuō)明 * @Copyright: XXXX dreamtech點(diǎn)抗 點(diǎn)吸煙 Inc. All right reserved * @Version: V6.0 */package com.demo.util; import java.io.IOException;import java.util.Map; import org.apache點(diǎn)抗 mons.httpclient.HttpClient;import org.apache點(diǎn)抗 mons.httpclient.HttpException;import org.apache點(diǎn)抗 mons.httpclient.SimpleHttpConnectionManager;import org.apache點(diǎn)抗 mons.httpclient.methods.GetMethod;import org.apache點(diǎn)抗 mons.httpclient.methods.PostMethod; /** * @Author: feizi * @Date: XXXX年XX月XX日 XX:XX:XX * @ModifyUser: feizi * @ModifyDate: XXXX年XX月XX日 XX:XX:XX * @Version:V6.0 */public class HttpRequestUtil { /** * HttpClient 模擬POST請(qǐng)求 * 方法說(shuō)明 * @Discription:擴(kuò)展說(shuō)明 * @param url * @param params * @return String * @Author: feizi * @Date: XXXX年XX月XX日 XX:XX:XX * @ModifyUser:feizi * @ModifyDate: XXXX年XX月XX日 XX:XX:XX */ public static String postRequest(String url, MapString, String params) { //構(gòu)造HttpClient的實(shí)例 HttpClient httpClient = new HttpClient(); //創(chuàng)建POST方法的實(shí)例 PostMethod postMethod = new PostMethod(url); //設(shè)置請(qǐng)求頭信息 postMethod.setRequestHeader("Connection", "close"); //添加參數(shù) for (Map.EntryString, String entry : params.entrySet()) { postMethod.addParameter(entry.getKey(), entry.getValue()); } //使用系統(tǒng)提供的默認(rèn)的恢復(fù)策略,設(shè)置請(qǐng)求重試處理,用的是默認(rèn)的重試處理:請(qǐng)求三次 httpClient.getParams().setBooleanParameter("http.protocol.expect-continue", false); //接收處理結(jié)果 String result = null; try { //執(zhí)行Http Post請(qǐng)求 httpClient.executeMethod(postMethod); //返回處理結(jié)果 result = postMethod.getResponseBodyAsString(); } catch (HttpException e) { // 發(fā)生致命的異常,可能是協(xié)議不對(duì)或者返回的內(nèi)容有問(wèn)題 System.out.println("請(qǐng)檢查輸入的URL!"); e.printStackTrace(); } catch (IOException e) { // 發(fā)生網(wǎng)絡(luò)異常 System.out.println("發(fā)生網(wǎng)絡(luò)異常!"); e.printStackTrace(); } finally { //釋放鏈接 postMethod.releaseConnection(); //關(guān)閉HttpClient實(shí)例 if (httpClient != null) { ((SimpleHttpConnectionManager) httpClient.getHttpConnectionManager()).shutdown(); httpClient = null; } } return result; } /** * HttpClient 模擬GET請(qǐng)求 * 方法說(shuō)明 * @Discription:擴(kuò)展說(shuō)明 * @param url * @param params * @return String * @Author: feizi * @Date: XXXX年XX月XX日 XX:XX:XX * @ModifyUser:feizi * @ModifyDate: XXXX年XX月XX日 XX:XX:XX */ public static String getRequest(String url, MapString, String params) { //構(gòu)造HttpClient實(shí)例 HttpClient client = new HttpClient(); //拼接參數(shù) String paramStr = ""; for (String key : params.keySet()) { paramStr = paramStr + "" + key + "=" + params.get(key); } paramStr = paramStr.substring(1); //創(chuàng)建GET方法的實(shí)例 GetMethod method = new GetMethod(url + "?" + paramStr); //接收返回結(jié)果 String result = null; try { //執(zhí)行HTTP GET方法請(qǐng)求 client.executeMethod(method); //返回處理結(jié)果 result = method.getResponseBodyAsString(); } catch (HttpException e) { // 發(fā)生致命的異常,可能是協(xié)議不對(duì)或者返回的內(nèi)容有問(wèn)題 System.out.println("請(qǐng)檢查輸入的URL!"); e.printStackTrace(); } catch (IOException e) { // 發(fā)生網(wǎng)絡(luò)異常 System.out.println("發(fā)生網(wǎng)絡(luò)異常!"); e.printStackTrace(); } finally { //釋放鏈接 method.releaseConnection(); //關(guān)閉HttpClient實(shí)例 if (client != null) { ((SimpleHttpConnectionManager) client.getHttpConnectionManager()).shutdown(); client = null; } } return result; }}
2、在創(chuàng)建一個(gè)類(lèi),生成驗(yàn)證碼,然后傳遞相應(yīng)的參數(shù)(不同的短信平臺(tái)接口會(huì)有不同的參數(shù)要求,這個(gè)一般短信平臺(tái)提供的接口文檔中都會(huì)有的,直接看文檔然后按要求來(lái)即可)
/** * 文件說(shuō)明 * @Description:擴(kuò)展說(shuō)明 * @Copyright: XXXX dreamtech點(diǎn)抗 點(diǎn)吸煙 Inc. All right reserved * @Version: V6.0 */package com.demo.util; import java點(diǎn)虐 .URLEncoder;import java.util.HashMap;import java.util.Map; /** * @Author: feizi * @Date: XXXX年XX月XX日 XX:XX:XX * @ModifyUser: feizi * @ModifyDate: XXXX年XX月XX日 XX:XX:XX * @Version:V6.0 */public class SendMsgUtil { /** * 發(fā)送短信消息 * 方法說(shuō)明 * @Discription:擴(kuò)展說(shuō)明 * @param phones * @param content * @return * @return String * @Author: feizi * @Date: 2015年4月17日 下午7:18:08 * @ModifyUser:feizi * @ModifyDate: 2015年4月17日 下午7:18:08 */ @SuppressWarnings("deprecation") public static String sendMsg(String phones,String content){ //短信接口URL提交地址 String url = "短信接口URL提交地址"; MapString, String params = new HashMapString, String(); params.put("zh", "用戶(hù)賬號(hào)"); params.put("mm", "用戶(hù)密碼"); params.put("dxlbid", "短信類(lèi)別編號(hào)"); params.put("extno", "擴(kuò)展編號(hào)"); //手機(jī)號(hào)碼,多個(gè)號(hào)碼使用英文逗號(hào)進(jìn)行分割 params.put("hm", phones); //將短信內(nèi)容進(jìn)行URLEncoder編碼 params.put("nr", URLEncoder.encode(content)); return HttpRequestUtil.getRequest(url, params); } /** * 隨機(jī)生成6位隨機(jī)驗(yàn)證碼 * 方法說(shuō)明 * @Discription:擴(kuò)展說(shuō)明 * @return * @return String * @Author: feizi * @Date: 2015年4月17日 下午7:19:02 * @ModifyUser:feizi * @ModifyDate: 2015年4月17日 下午7:19:02 */ public static String createRandomVcode(){ //驗(yàn)證碼 String vcode = ""; for (int i = 0; i 6; i++) { vcode = vcode + (int)(Math.random() * 9); } return vcode; } /** * 測(cè)試 * 方法說(shuō)明 * @Discription:擴(kuò)展說(shuō)明 * @param args * @return void * @Author: feizi * @Date: XXXX年XX月XX日 XX:XX:XX * @ModifyUser:feizi * @ModifyDate: XXXX年XX月XX日 XX:XX:XX */ public static void main(String[] args) {// System.out.println(SendMsgUtil.createRandomVcode());// System.out.println("ecb=12".substring(1)); System.out.println(sendMsg("18123456789,15123456789", "尊敬的用戶(hù),您的驗(yàn)證碼為" + SendMsgUtil.createRandomVcode() + ",有效期為60秒,如有疑慮請(qǐng)?jiān)斣?xún)XXX-XXX-XXXX【XXX中心】")); }
然后執(zhí)行一下,一般的情況下參數(shù)傳遞正確,按照接口文檔的規(guī)范來(lái)操作的話(huà),都會(huì)發(fā)送成功的,手機(jī)都能收到驗(yàn)證碼的,然后可能會(huì)出現(xiàn)的問(wèn)題就是:發(fā)送的短信內(nèi)容有可能會(huì)出現(xiàn)中文亂碼,然后就會(huì)發(fā)送不成功,按照短信平臺(tái)的要求進(jìn)行相應(yīng)的編碼即可。一般都會(huì)是UTF-8編碼。
說(shuō)個(gè)流程吧
1.去移動(dòng)或者電信申請(qǐng)一個(gè)web接口
2.客戶(hù)填寫(xiě)請(qǐng)求輸入手機(jī)號(hào)碼提交
3.調(diào)申請(qǐng)的接口吧(注意給個(gè)對(duì)方(電信或者移動(dòng))的回調(diào)地址吧)
4.從回調(diào)地址里拿客戶(hù)輸入的數(shù)據(jù)了,判斷數(shù)據(jù)了
5.返回?cái)?shù)據(jù)給客戶(hù)了
純屬個(gè)人理解