1. 程式人生 > >java實現SMS簡訊平臺傳送驗證碼功能

java實現SMS簡訊平臺傳送驗證碼功能

package com.tianxi.util;

import org.apache.commons.httpclient.Header;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.PostMethod;

import java.util.HashMap;
import java.util.Map;

/**
 * Created by sq on 2017/7/18 0018.
 * description:
 */
public class SendMessage {

    private static final String URL = "http://sms.webchinese.cn/web_api/";

    public static Map<String,Integer> sendMessage(String phone) throws Exception{
        HttpClient client = new HttpClient();
        PostMethod post = new PostMethod(URL);
        client.getParams().setContentCharset("GBK");
        post.setRequestHeader("ContentType","application/x-www-form-urlencoded;charset=GBK");

        int mobile_code = (int)((Math.random()*9+1)*100000);

        String content = new String("您的驗證碼是:" + mobile_code + "。請不要把驗證碼洩露給其他人。");

        NameValuePair[] data = {//提交簡訊
                new NameValuePair("Uid", "jxxxxxx"),//sms網註冊的使用者名稱
                new NameValuePair("key", "3xxxxxxxxxx"), //sms金鑰
                new NameValuePair("smsMob", phone),
                new NameValuePair("smsText", content),
        };
        post.setRequestBody(data);

        client.executeMethod(post);
        Header[] headers = post.getResponseHeaders();
        int statusCode = post.getStatusCode();
        System.out.println("statusCode:" + statusCode);
        for (Header h : headers) {
            System.out.println(h.toString());
        }
        String result = new String(post.getResponseBodyAsString().getBytes(
                "gbk"));
        System.out.println(result);//返回值資訊
        post.releaseConnection();
        Map<String,Integer> map = new HashMap<String, Integer>();
        map.put("result",Integer.parseInt(result));
        map.put("mobile_code",mobile_code);
        System.out.println("map:"+map);
        return map;
    }

}