在JAVA中通过短信的形式发送到手机号码上

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在JAVA中通过短信的形式发送到手机号码上相关的知识,希望对你有一定的参考价值。

package com.fetion.test;

import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Properties;

import org.apache.commons.httpclient.Header;
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;

/**
 * API2.1调用:f.php?phone=xxxxxx&pwd=xxx&to=xxxx&msg=xxxx&type=0
 *以上接口参数详细说明 VIP API
 *1.phone:手机号
 *2.pwd:飞信密码
 *3.to:发送给谁(手机号或飞信号)
 *4.msg:飞信内容
 *5.type:操作 0(空)发送短信 1检查好友 2添加好友
 *6.u:备用参数:当发送内容为乱码时 在最后加上&u=1
 */
public class Fetion {
    //自己的手机号
    private static String PHONE = "";  
    //自己的飞信密码
    private static String PWD = "";  
    //对方的手机号
    private static String TO = "";  
    //
    private static String configuration;
   
    private Properties config = new Properties();
   
    public Fetion(){
        init();
    }
    //初始化配置文件
    public void init(){
        try {
            InputStream is = new FileInputStream("FetionConfig");
            config.load(new InputStreamReader(is));
            configuration=config.getProperty("WeekendGreetings");
            System.out.println(configuration);
            PHONE=config.getProperty("phone");
            PWD=config.getProperty("pwd");
            TO=config.getProperty("to");
            is.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
     public static void sendMsg(String _phone,String _pwd,String _to,String _msg) throws HttpException, IOException{  
                 HttpClient client = new HttpClient();  
                 PostMethod post = new PostMethod("http://3.ibtf.sinaapp.com/f.php");  
                 post.addRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=utf-8");//在头文件中设置转码   
                 NameValuePair[] data ={   
                         new NameValuePair("phone", _phone),  
                         new NameValuePair("pwd", _pwd),  
                         new NameValuePair("to",_to),  
                         new NameValuePair("msg",_msg),  
                         new NameValuePair("type","0")  
                         };  
                 post.setRequestBody(data);  
               
                 client.executeMethod(post);  
                 Header[] headers = post.getResponseHeaders();  
                 int statusCode = post.getStatusCode();  
                 System.out.println("statusCode:"+statusCode);  
                 for(Header h : headers){  
                     System.out.println(h.toString());  
                 }  
                 //String result = new String(post.getResponseBodyAsString().getBytes("utf-8"));   
                 //System.out.println(result);   
                 System.out.println("ok!");  
                 post.releaseConnection();  
             }  
     public  void start(){
         try {
            FileReader fr = new FileReader(configuration);
            BufferedReader br = new BufferedReader(fr);
            String MSG=null;
            
            while ((MSG=br.readLine())!=null) {
                Fetion.sendMsg(PHONE, PWD, TO, MSG);  
            }
            br.close();
            fr.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        
     }
     public static void main(String[] args) {  
         Fetion f = new Fetion();
         f.start();
        }  

}

以上是关于在JAVA中通过短信的形式发送到手机号码上的主要内容,如果未能解决你的问题,请参考以下文章

如何在安卓中通过短信发送谷歌日历活动邀请

利用java实现的一个发送手机短信的小例子

如何在 Chrome 中通过 nativeMessaging 发送/接收短信?

苹果手机怎么看流量监测

思梦PHP-阿里大鱼手机验证码

思梦PHP-阿里大鱼手机验证码