//介面型別:觸發簡訊介面,支援傳送驗證碼簡訊、訂單通知簡訊等。
//注意事項:
//(1)除錯期間,請用預設的模板進行測試,預設模板詳見介面文件;
//(2)請使用APIID及APIkey來呼叫介面,APIkey在會員中心可以獲取;
//(3)該程式碼僅供接入簡訊介面參考使用,可根據實際需要自行編寫;
import java.io.IOException;import org.apache.commons.httpclient.HttpClient;import org.apache.commons.httpclient.HttpException;import org.apache.commons.httpclient.NameValuePair;import org.apache.commons.httpclient.methods.PostMethod;import org.dom4j.Document; import org.dom4j.DocumentException;import org.dom4j.DocumentHelper; import org.dom4j.Element; import util.StringUtil;public class sendsms {```rivate static String Url = "http://106.ihuyi.cn/webservice/sms.php?method=Submit"; public static void main(String [] args) { HttpClient client = new HttpClient(); PostMethod method = new PostMethod(Url); client.getParams().setContentCharset("GBK"); method.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("account", "使用者名稱"), new NameValuePair("password", "密碼"), //檢視密碼請登入使用者中心->驗證碼、通知簡訊->帳戶及簽名設定->APIKEY //new NameValuePair("password", util.StringUtil.MD5Encode("密碼")), new NameValuePair("mobile", "手機號碼"), new NameValuePair("content", content), }; method.setRequestBody(data); try { client.excuteMethod(method); String SubmitResult =method.getResponseBodyAsString(); //System.out.println(SubmitResult); Document doc = DocumentHelper.parseText(SubmitResult); Element root = doc.getRootElement(); String code = root.elementText("code"); String msg = root.elementText("msg"); String smsid = root.elementText("smsid"); System.out.println(code); System.out.println(msg); System.out.println(smsid); if("2".equals(code)){ System.out.println("簡訊提交成功"); } } catch (HttpException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (DocumentException e) { // TODO Auto-generated catch block e.printStackTrace(); } }}