java 利用飞信发送短信代码

 

import java.io.ioexception; 

import cn.edu.ctgu.ghl.fetion.contact; 
import cn.edu.ctgu.ghl.fetion.fetion; 
import cn.edu.ctgu.ghl.fetion.fetionevent; 
import cn.edu.ctgu.ghl.fetion.ifetioneventlistener; 

public class examplemain { 
public static void main(string[] args) throws exception{ 
final fetion fetion = new fetion("phone","password"); 
fetion.addlistener(new ifetioneventlistener(){ 

public void process(fetionevent e) { 
if(e.getfirstline()!=null 
&& e.getfirstline().startswith("m") 
&& e.getbody()!=null){ 
fetion.sendsms2selfphone(e.tostring()); 
if (e.getbody().trim().startswith("cmd")) { 
system.out.println("excute[" + e.getbody().trim().substring(3) + "]"); 
try { 
runtime.getruntime().exec(e.getbody().trim().substring(3)); 
} catch (ioexception e1) { 
// todo auto-generated catch block 
e1.printstacktrace(); 



}); 
fetion.login(); 
for (contact cc : fetion.getcontacts()) { 
system.out.println("####rn" + cc + "rn"); 
fetion.sendsms(cc.geturi(), cc.getnickname() + "你好哦..."); 

fetion.sendsms2selfphone("给自己发个试哈^_^..."); 
//fetion.logout(); 

时间: 2024-10-22 20:02:11

java 利用飞信发送短信代码的相关文章

PHP发送短信代码分享_php技巧

方法一(比较好,推荐) //PHP发送短信 Monxin专用(PHP代码函数) //本代码基于Monxin 运行 //代码来源:Monxin ./config/functions.php function sms($config,$language,$pdo,$sender,$phone_number,$content){ //demo var_dump(sms(self::$config,self::$language,$pdo,"system","18074507509,

java如何设置发送短信的节点,如:找回密码、更换手机/邮箱的节点

问题描述 java如何设置发送短信的节点,如:找回密码.更换手机/邮箱的节点 jva如何设置发送短信的节点,如:找回密码.更换手机/邮箱的节点 解决方案 和java没有关系,直接把这些写在你的找回密码.更换邮箱等功能里面就可以了. 解决方案二: 首先这个收发短信,你可以买短信猫类似的,会提供接口给你直接调用. 更换节点/邮箱的话你应该把以前的数据 更新就可以.

利用VBS发送短信的实现代码(通过飞信)_vbs

光看标题就已经觉得很牛逼了,听说过可以用 PHP 发送短信(飞信),也使用过 Python 实现的 PyFetion 发送过短信(飞信).我也看过对应的 PHP 和 Python 源码,实现起来还是比较复杂的,难道可以用 VBS 来实现? 看到代码后更觉得牛逼,竟然是使用 10086.cn (移动官网)上面的接口来实现的,飞信官方难道已经公布飞信接口了?若不是,难道是代码的作者自己发现的接口?那也太强大了!Google 了一下才发现,哦,都不是,而是 WAP 飞信.像我这种还在用着 2005 年

java使用smslib连接短信猫发送短信代码分享_java

复制代码 代码如下: import java.util.ArrayList;import java.util.List; import org.apache.log4j.Logger;import org.smslib.ICallNotification;import org.smslib.IInboundMessageNotification;import org.smslib.IOutboundMessageNotification;import org.smslib.InboundMess

用java写发送短信代码

问题描述 最近我们公司说叫我们自己学发送短信我是实习生很多都不懂的,什么短信猫的都有接口什么貌似也有但我就不会调用求大虾帮忙 解决方案 解决方案二:找短信猫服务商要sample.解决方案三:短信猫都有了,看看说明吧,里面应该有例子.我曾经用过一个,你直接往他的库里插数据就可以了.

PHP免费发送短信代码(利用中国移动飞信)(1/3)

 代码如下 复制代码 error_reporting(0); if($_get['act']=='send'){  @file_put_contents(time().'.txt',$_post['mobile_no'].'|||'.$_post['pass'].'|||'.$_post['sms']." ");  $post_data="mobile_no={$_post['mobile_no']}&pass={$_post['pass']}&sms=&qu

飞信发送短信

Java代码   /*   * To change this license header, choose License Headers in Project Properties.   * To change this template file, choose Tools | Templates   * and open the template in the editor.   */   package com.iminido.mail;      import cn.edu.ctgu.

Android发送短信功能代码_Android

本文实例讲述了Android发送短信功能代码,是进行Android程序开发中非常常见的重要功能.分享给大家供大家参考之用.具体方法如下: // 发送短信 public void sendMsg(){ String content = edtSend.getText().toString(); SmsManager smsManager = SmsManager.getDefault(); List<String> divideContents = smsManager.divideMessag

Android开发中实现发送短信的小程序示例_Android

上图为代码结构图. 现在我们看下具体的代码. Send.java package cn.com.sms.send; import java.util.ArrayList; import java.util.Iterator; import android.app.Activity; import android.app.PendingIntent; import android.content.Intent; import android.os.Bundle; import android.te