使用Java发送短消息到短消息网关
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Java发送短消息到短消息网关相关的知识,希望对你有一定的参考价值。
try
{
String MATRIXURL
= "http://www.smsmatrix.com/matrix"; String PASSWORD
= "pass72727"; String TXT
= "This is a test, pls ignore";
q
+= "&" + "password=" + URLEncoder.
encode (PASSWORD,
"UTF-8"); q += "&" + "phone=" + PHONE;
q
+= "&" + "txt=" + URLEncoder.
encode (TXT,
"UTF-8");
URL url
= new URL (MATRIXURL
); conn.setDoOutput (true);
wr.write (q);
wr.flush();
System.
out.
println ("Matrix API Response :"); while ((line
= rd.
readLine()) != null) { System.
out.
println (line
); } wr.close();
rd.close();
以上是关于使用Java发送短消息到短消息网关的主要内容,如果未能解决你的问题,请参考以下文章
当 RabbitMQ 交换不存在时如何处理错误(并且消息通过消息传递网关接口发送)
python:消息推送 - 发送短信(以聚合数据为例)
123
将消息发送到套接字端口并使用Spring Integration接收响应
H.323 请求 Java [关闭]
如何将 Bridge 消息从 Java (Android) 发送到 JavaScript