锁定老帖子 主题:周末好玩,用短信控制你的计算机
精华帖 (0) :: 良好帖 (7) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-01-10
最后修改:2011-01-20
Snapshot:
详情见: http://code.google.com/p/cmcccom/
Weekend at home,I have nothing to do..So just make a fun:) This is a toy(java) which can control your personal computer by sending a sms to your Fetion Client based on another project 'maplefetion'...At the beginning,I would like to control my television but that needs some hardware supports. Doing: And I want to practice more interesting thing... How to use:
目前已实现:
正在实现中: * 订阅当地天气服务; * 订阅每日黄金金价; * 订阅指定日期、地点火车票转让信息; 正在构思中: * 自动化鼠标和键盘操作;
如何使用(临时):
如何提交BUG: 请提交到以下地址: http://code.google.com/p/cmcccom/issues/list 如何扩展:
public class UnknowAct implements Action{ private final String cmd="un"; ActionFactory factory; public UnknowAct(ActionFactory factory){ this.factory=factory; } public Object call() throws Exception { String rs="hello,this is cmcccom project by cjcj"; return rs; } public String getCmd() { return cmd; } public void setHandles(Object... hdls) { } }
方式二:继承DefaultBaseAction(线程安全的调用方法) public class StartupWar3Act extends DefaultBaseAction implements Action{ public StartupWar3Act(ActionFactory factory) { super(factory); } private final String cmd="war3"; public Object call0() throws Exception { String rs="sucess."; return rs; } public String getCmd() { return cmd; } public void setHandles(Object... hdls) { } }
Demo: http://code.google.com/p/cmcccom/downloads/list 提交给我,或者CVS。
安全问题:
SVN: http ://cmcccom.googlecode.com/svn/trunk/
希望有更多的爱好者来扩展更多有趣的应用 , 如果你有更好的想法和硬件的支持,我们可以合作攒个智能家电的产品。
作者:cjcj 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2011-01-10
貌似去年就实现了类似的功能
|
|
返回顶楼 | |
发表时间:2011-01-10
关注一下,好像挺有些意思
|
|
返回顶楼 | |
发表时间:2011-01-10
对哦,根据短信内容进行电脑的操作,岂不是爽哉!
|
|
返回顶楼 | |
发表时间:2011-01-11
好想法~~
|
|
返回顶楼 | |
发表时间:2011-01-11
可以让电脑开机么?有的时候可能需要插插头
|
|
返回顶楼 | |
发表时间:2011-01-11
关注下 貌似这个比较好玩
|
|
返回顶楼 | |
发表时间:2011-01-11
能让电脑开机不?那才有创意
|
|
返回顶楼 | |
发表时间:2011-01-11
有那么点意思,下载了看看
|
|
返回顶楼 | |
发表时间:2011-01-11
既然飞信能收到短信,前提就是电脑连上网,如果有网络还需要用短信控制吗?
|
|
返回顶楼 | |