码迷,mamicode.com
首页 > 移动开发 > 详细

java发送手机短信

时间:2017-07-15 15:59:33      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:seda   smo   blank   ref   cep   头文件   star   char   head   

JAVA发送手机短信有几种方法:

(1)使用webservice接口发送手机短信,这个可以使用sina提供的webservice进行发送,但是需要进行注册;

(2)使用短信mao的方式进行短信的发送,这种方式应该是比较的常用,前提是需要购买硬件设备;

(3)使用中国网建提供的SMS短信平台(申请账号地址:http://sms.webchinese.cn/default.shtml)

本程序主要是运用了中国网建提供的SMS短信平台,这个短信平台基于java提供个专门的接口,其原理是:给用户发送短信主要是通过移动提供给的接口,而我们程序主要是将短信信息(手机号码、短信内容)发给这个接口,之后就是移动的事情了(根据信息发给相应的用户)....

下面是我的java代码,仅供参考:

 

[html] view plain copy
 
 print?
  1. package in.dapai.server;  
  2.   
  3. import org.apache.commons.httpclient.Header;  
  4. import org.apache.commons.httpclient.HttpClient;  
  5. import org.apache.commons.httpclient.NameValuePair;  
  6. import org.apache.commons.httpclient.methods.PostMethod;  
  7. /**  
  8.  * 测试发送短信  
  9.  *   
  10.  * @author zrz  
  11.  */  
  12. public class SendMsg {  
  13.     public static void main(String[] args) throws Exception {  
  14.         HttpClient client = new HttpClient();  
  15.         PostMethod post = new PostMethod("http://gbk.sms.webchinese.cn");  
  16.         post.addRequestHeader("Content-Type",  
  17.                 "application/x-www-form-urlencoded;charset=gbk");// 在头文件中设置转码  
  18.         NameValuePair[] data = { new NameValuePair("Uid", "javagirlone"),  
  19.                 new NameValuePair("Key", "a7d2b13d68d416014147"),  
  20.                 new NameValuePair("smsMob", "182******21"),  
  21.                 new NameValuePair("smsText", "XXX接收:手机验证码:12451597474") };  
  22.         post.setRequestBody(data);  
  23.   
  24.         client.executeMethod(post);  
  25.         Header[] headers = post.getResponseHeaders();  
  26.         int statusCode = post.getStatusCode();  
  27.         System.out.println("statusCode:" + statusCode);  
  28.         for (Header h : headers) {  
  29.             System.out.println(h.toString());  
  30.         }  
  31.         String result = new String(post.getResponseBodyAsString().getBytes(  
  32.                 "gbk"));  
  33.         System.out.println(result);  
  34.   
  35.         post.releaseConnection();  
  36.     }  
  37. }  

本程序运行需要导入3个jar文件,点击下面链接下载即可,

 

commons-logging-1.1.1.jar

commons-httpclient-3.1.jar

commons-codec-1.4.jar

友情提示:

GBK编码发送接口地址:
http://gbk.sms.webchinese.cn/?Uid=本站用户名&Key=接口安全密码&smsMob=手机号码&smsText=短信内容 
UTF-8编码发送接口地址:
http://utf8.sms.webchinese.cn/?Uid=本站用户名&Key=接口安全密码&smsMob=手机号码&smsText=短信内容
获取短信数量接口地址(UTF8):
http://sms.webchinese.cn/web_api/SMS/?Action=SMS_Num&Uid=本站用户名&Key=接口安全密码
获取短信数量接口地址(GBK):
http://sms.webchinese.cn/web_api/SMS/GBK/?Action=SMS_Num&Uid=本站用户名&Key=接口安全密码

 

短信发送后返回值说 明
-1 没有该用户账户
-2 接口密钥不正确 [查看密钥]
不是账户登陆密码
-21 MD5接口密钥加密不正确
-3 短信数量不足
-11 该用户被禁用
-14 短信内容出现非法字符
-4 手机号格式不正确
-41 手机号码为空
-42 短信内容为空
-51 短信签名格式不正确
接口签名格式为:【签名内容】
-6 IP限制
大于0 短信发送数量


注:上面的用户名和密码是我原先申请的,在运行本程序之前请先到SMS短信平台去申请一个用户名和密码。

附:

 

 

[html] view plain copy
 
 print?
    1. <span style="font-size:18px;"><span style="color:#ff0000;">1. ASP 调用例子</span>  
    2. <%  
    3. ‘常用函数  
    4. ‘输入url目标网页地址,返回值getHTTPPage是目标网页的html代码  
    5. function getHTTPPage(url)  
    6. dim Http  
    7. set Http=server.createobject("MSXML2.XMLHTTP")  
    8. Http.open "GET",url,false  
    9. Http.send()  
    10. if Http.readystate<>4 then   
    11. exit function  
    12. end if  
    13. getHTTPPage=bytesToBSTR(Http.responseBody,"GB2312")  
    14. set http=nothing  
    15. if err.number<>0 then err.Clear   
    16. end function  
    17. Function BytesToBstr(body,Cset)  
    18. dim objstream  
    19. set objstream = Server.CreateObject("adodb.stream")  
    20. objstream.Type = 1  
    21. objstream.Mode =3  
    22. objstream.Open  
    23. objstream.Write body  
    24. objstream.Position = 0  
    25. objstream.Type = 2  
    26. objstream.Charset = Cset  
    27. BytesToBstr = objstream.ReadText   
    28. objstream.Close  
    29. set objstream = nothing  
    30. End Function  
    31.   
    32. ‘自已组合一下提交的URL加入自己的账号和密码  
    33. sms_url="http://sms.webchinese.cn/web_api/?Uid=账号&Key=接口密钥&smsMob=手机号码&smsText=短信内容"  
    34. response.write getHTTPPage(sms_url)  
    35. %>   
    36.   
    37. <span style="color:#ff0000;">2.C# 调用</span>  
    38. //需要用到的命名空间  
    39. using System.Net;  
    40. using System.IO;  
    41. using System.Text;  
    42. //调用时只需要把拼成的URL传给该函数即可。判断返回值即可  
    43. public string GetHtmlFromUrl(string url)  
    44. {  
    45. string strRet = null;  
    46. if(url==null || url.Trim().ToString()=="")  
    47. {  
    48. return strRet;  
    49. }  
    50. string targeturl = url.Trim().ToString();  
    51. try  
    52. {  
    53. HttpWebRequest hr = (HttpWebRequest)WebRequest.Create(targeturl);  
    54. hr.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)";  
    55. hr.Method = "GET";  
    56. hr.Timeout = 30 * 60 * 1000;  
    57. WebResponse hs = hr.GetResponse();  
    58. Stream sr = hs.GetResponseStream();  
    59. StreamReader ser = new StreamReader(sr, Encoding.Default);  
    60. strRet = ser.ReadToEnd();   
    61. }  
    62. catch (Exception ex)  
    63. {  
    64. strRet = null;  
    65. }  
    66. return strRet;  
    67. }  
    68.   
    69. <span style="background-color: rgb(255, 255, 255);"><span style="color:#ff0000;">3.JAVA调用</span></span>  
    70. import java.io.UnsupportedEncodingException;  
    71. import org.apache.commons.httpclient.Header;  
    72. import org.apache.commons.httpclient.HttpClient;  
    73. import org.apache.commons.httpclient.NameValuePair;  
    74. import org.apache.commons.httpclient.methods.PostMethod;  
    75.   
    76. public class SendMsg_webchinese {  
    77.   
    78. public static void main(String[] args)throws Exception  
    79. {  
    80.   
    81. HttpClient client = new HttpClient();  
    82. PostMethod post = new PostMethod("http://gbk.sms.webchinese.cn");   
    83. post.addRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=gbk");//在头文件中设置转码  
    84. NameValuePair[] data ={ new NameValuePair("Uid", "本站用户名"),new NameValuePair("Key", "接口安全密码"),new NameValuePair("smsMob","手机号码"),new NameValuePair("smsText","短信内容")};  
    85. post.setRequestBody(data);  
    86.   
    87. client.executeMethod(post);  
    88. Header[] headers = post.getResponseHeaders();  
    89. int statusCode = post.getStatusCode();  
    90. System.out.println("statusCode:"+statusCode);  
    91. for(Header h : headers)  
    92. {  
    93. System.out.println(h.toString());  
    94. }  
    95. String result = new String(post.getResponseBodyAsString().getBytes("gbk"));   
    96. System.out.println(result); //打印返回消息状态  
    97.   
    98.   
    99. post.releaseConnection();  
    100.   
    101. }  
    102.   
    103. }  
    104.   
    105. jar包下载(同上)  
    106. commons-logging-1.1.1.jar  
    107. commons-httpclient-3.1.jar  
    108. commons-codec-1.4.jar  
    109.   
    110. 说明:如果返回值是200,应该是整段程序代码没有执行完整,只获取到client.executeMethod(post)HTTP状态码的消息;接口是提交成功,没有执行下半部的返回消息代码。  
    111. client.executeMethod(post);HTTP状态码参考:http://baike.baidu.com/view/1790469.htm  
    112.   
    113. <span style="color:#ff0000;">4.PHP</span>  
    114. $url=‘http://sms.webchinese.cn/web_api/?Uid=账号&Key=接口密钥&smsMob=手机号码&smsText=短信内容‘;  
    115. echo Get($url);  
    116. function Get($url)  
    117. {  
    118. if(function_exists(‘file_get_contents‘))  
    119. {  
    120. $file_contents = file_get_contents($url);  
    121. }  
    122. else  
    123. {  
    124. $ch = curl_init();  
    125. $timeout = 5;  
    126. curl_setopt ($ch, CURLOPT_URL, $url);  
    127. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);  
    128. curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);  
    129. $file_contents = curl_exec($ch);  
    130. curl_close($ch);  
    131. }  
    132. return $file_contents;  
    133. }  
    134.   
    135. <span style="color:#ff0000;">5.VB.NET</span>  
    136. ‘调用发送短信,NoList接收号码.多个之间用,分开,Memo内容70字  
    137. Public Function SendSMS(ByVal NoList As String, ByVal Memo As String) As String   
    138. Dim Url As String = "http://sms.webchinese.cn/web_api/?Uid=账号&Key=接口密钥&smsMob=手机号码&smsText=短信内容"  
    139. Dim webClient As New Net.WebClient()  
    140. Try  
    141. ‘Dim responseData As Byte() =   
    142. Dim srcString As String = webClient.DownloadString(Url)  
    143. Return srcString  
    144. Catch  
    145. Return "-444"  
    146. End Try  
    147. End Function</span>  

java发送手机短信

标签:seda   smo   blank   ref   cep   头文件   star   char   head   

原文地址:http://www.cnblogs.com/mxgg/p/7182718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!