JAVA
JAVA代碼示例
//接口類型:達信通觸發短信接口,支持發送驗證碼短信、訂單通知短信等。
// 賬戶注冊:請通過該地址開通賬戶http://sms.wx96.com/register.html
// 注意事項:
//(1)調試期間,請用默認的模板進行測試,默認模板詳見接口文檔;
//(2)請使用 用戶名(例如:cf_demo123)及 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 {
	
	private static String Url = "http://106.wx96.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();
		}	
		
	}
	
}
      
               
        
