• 大小: 1.13MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-11
  • 语言: 其他
  • 标签: jsp  servlet  sql  server2008  

资源简介

学科竞赛管理系统:对大学学科竞赛的管理,包括竞赛报名,上传作品,在线指导,申请竞赛以及举办竞赛等一系列功能。

资源截图

代码片段和文件信息

package feixin;

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(“####\r\n“ + cc + “\r\n“);
fetion.sendSms(cc.getUri() cc.getNickName() + “你好哦...“);
}
fetion.sendSms2SelfPhone(“给自己发个试哈^_^...“);
//fetion.logout();
}


}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       8179  2013-06-29 22:19  新建文本文档.txt

----------- ---------  ---------- -----  ----

                 8179                    1


评论

共有 条评论