/** * Created by bingone on 15/12/16. */ import org.apache.http.HttpEntity; import org.apache.http.NameValuePair; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicNameValuePair; import org.apache.http.util.EntityUtils; import java.io.IOException; import java.net.URISyntaxException; import java.net.URLEncoder; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * 短信http接口的java代碼調用示例 * 基於Apache HttpClient 4.3 * * @author songchao * @since 2015-04-03 */ public class JavaSmsApi { //查賬戶信息的http地址 private static String URI_GET_USER_INFO = "https://sms.yunpian.com/v1/user/get.json"; //智能匹配模板發送接口的http地址 private static String URI_SEND_SMS = "https://sms.yunpian.com/v1/sms/send.json"; //模板發送接口的http地址 private static String URI_TPL_SEND_SMS = "https://sms.yunpian.com/v1/sms/tpl_send.json"; //發送語音驗證碼接口的http地址 private static String URI_SEND_VOICE = "https://voice.yunpian.com/v1/voice/send.json"; //編碼格式。發送編碼格式統一用UTF-8 private static String ENCODING = "UTF-8"; public static void main(String[] args) throws IOException, URISyntaxException { //修改為您的apikey.apikey可在官網(http://www.yuanpian.com)登錄后獲取 String apikey = "xxxxxxxxxxxxxxxxxxxxx"; //修改為您要發送的手機號 String mobile = "130xxxxxxxx"; /**************** 查賬戶信息調用示例 *****************/ System.out.println(JavaSmsApi.getUserInfo(apikey)); /**************** 使用智能匹配模板接口發短信(推薦) *****************/ //設置您要發送的內容(內容必須和某個模板匹配。以下例子匹配的是系統提供的1號模板) String text = "【雲片網】您的驗證碼是1234"; //發短信調用示例 // System.out.println(JavaSmsApi.sendSms(apikey, text, mobile)); /**************** 使用指定模板接口發短信(不推薦,建議使用智能匹配模板接口) *****************/ //設置模板ID,如使用1號模板:【#company#】您的驗證碼是#code# long tpl_id = 1; //設置對應的模板變量值 String tpl_value = URLEncoder.encode("#code#",ENCODING) +"=" + URLEncoder.encode("1234", ENCODING) + "&" + URLEncoder.encode("#company#",ENCODING) + "=" + URLEncoder.encode("雲片網",ENCODING); //模板發送的調用示例 System.out.println(tpl_value); System.out.println(JavaSmsApi.tplSendSms(apikey, tpl_id, tpl_value, mobile)); /**************** 使用接口發語音驗證碼 *****************/ String code = "1234"; //System.out.println(JavaSmsApi.sendVoice(apikey, mobile ,code)); } /** * 取賬戶信息 * * @return json格式字符串 * @throws java.io.IOException */ public static String getUserInfo(String apikey) throws IOException, URISyntaxException { Map<String, String> params = new HashMap<String, String>(); params.put("apikey", apikey); return post(URI_GET_USER_INFO, params); } /** * 智能匹配模板接口發短信 * * @param apikey apikey * @param text 短信內容 * @param mobile 接受的手機號 * @return json格式字符串 * @throws IOException */ public static String sendSms(String apikey, String text, String mobile) throws IOException { Map<String, String> params = new HashMap<String, String>(); params.put("apikey", apikey); params.put("text", text); params.put("mobile", mobile); return post(URI_SEND_SMS, params); } /** * 通過模板發送短信(不推薦) * * @param apikey apikey * @param tpl_id 模板id * @param tpl_value 模板變量值 * @param mobile 接受的手機號 * @return json格式字符串 * @throws IOException */ public static String tplSendSms(String apikey, long tpl_id, String tpl_value, String mobile) throws IOException { Map<String, String> params = new HashMap<String, String>(); params.put("apikey", apikey); params.put("tpl_id", String.valueOf(tpl_id)); params.put("tpl_value", tpl_value); params.put("mobile", mobile); return post(URI_TPL_SEND_SMS, params); } /** * 通過接口發送語音驗證碼 * @param apikey apikey * @param mobile 接收的手機號 * @param code 驗證碼 * @return */ public static String sendVoice(String apikey, String mobile, String code) { Map<String, String> params = new HashMap<String, String>(); params.put("apikey", apikey); params.put("mobile", mobile); params.put("code", code); return post(URI_SEND_VOICE, params); } /** * 基於HttpClient 4.3的通用POST方法 * * @param url 提交的URL * @param paramsMap 提交<參數,值>Map * @return 提交響應 */ public static String post(String url, Map<String, String> paramsMap) { CloseableHttpClient client = HttpClients.createDefault(); String responseText = ""; CloseableHttpResponse response = null; try { HttpPost method = new HttpPost(url); if (paramsMap != null) { List<NameValuePair> paramList = new ArrayList<NameValuePair>(); for (Map.Entry<String, String> param : paramsMap.entrySet()) { NameValuePair pair = new BasicNameValuePair(param.getKey(), param.getValue()); paramList.add(pair); } method.setEntity(new UrlEncodedFormEntity(paramList, ENCODING)); } response = client.execute(method); HttpEntity entity = response.getEntity(); if (entity != null) { responseText = EntityUtils.toString(entity); } } catch (Exception e) { e.printStackTrace(); } finally { try { response.close(); } catch (Exception e) { e.printStackTrace(); } } return responseText; } }