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;
//接口類型:互億無(wú)線國(guó)際短信接口。
//賬戶注冊(cè):請(qǐng)通過(guò)該地址開通賬戶http://user.ihuyi.com/?jmzFP2
//注意事項(xiàng):
//(1)調(diào)試期間,請(qǐng)仔細(xì)閱讀接口文檔偏友;
//(2)請(qǐng)使用 APIID 及 APIKEY來(lái)調(diào)用接口,可在會(huì)員中心獲韧堋;
//(3)該代碼僅供接入互億無(wú)線短信接口參考使用卿城,客戶可根據(jù)實(shí)際需要自行編寫淑履;
public class sendsms {
? ? private static String Url = "http://api.isms.ihuyi.com/webservice/isms.php?method=Submit";
? ? public static void main(String [] args) {
? ? ? ? HttpClient client = new HttpClient();
? ? ? ? PostMethod method = new PostMethod(Url);
? ? ? ? //client.getParams().setContentCharset("GBK");
? ? ? ? client.getParams().setContentCharset("UTF-8");
? ? ? ? method.setRequestHeader("ContentType","application/x-www-form-urlencoded;charset=UTF-8");
? ? ? ? NameValuePair[] data = {//提交短信
? ? ? ? ? ? ? ? new NameValuePair("account", "用戶名"),//查看用戶名 登錄用戶中心->國(guó)際驗(yàn)證碼>產(chǎn)品總覽->API接口信息->APIID
? ? ? ? ? ? ? ? new NameValuePair("password", "密碼"),//查看密碼 登錄用戶中心->國(guó)際驗(yàn)證碼>產(chǎn)品總覽->API接口信息->APIKEY
? ? ? ? ? ? ? ? new NameValuePair("mobile", "139xxxxxxxx"),//手機(jī)號(hào)碼
? ? ? ? ? ? ? ? new NameValuePair("content", "Your verification code is 1125"),
? ? ? ? };
? ? ? ? method.setRequestBody(data);
? ? ? ? try {
? ? ? ? ? ? client.executeMethod(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 ismsid = root.elementText("ismsid");
? ? ? ? ? ? System.out.println(code);
? ? ? ? ? ? System.out.println(msg);
? ? ? ? ? ? System.out.println(ismsid);
? ? ? ? ? ? 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();
? ? ? ? }
? ? }
}