Package net.solosky.maplefetion.demo.robot.app

Examples of net.solosky.maplefetion.demo.robot.app.HelloApp


    public static void main(String[] args)
    {
      if(args.length>=2){
        FetionRobot sms = new FetionRobot();
        sms.registerGateway(new FetionGateway(Long.parseLong(args[0]),args[1]));
        sms.registerApp(new HelloApp());
        sms.registerApp(new WeatherApp());
        sms.start();
        sms.readCmd();
      }else{
        System.out.println("参数不正确, 请使用 java net.solosky.maplefetion.demo.robot.FetionRobot 机器人手机号 密码");
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.demo.robot.app.HelloApp

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.