Package cs.mm

Source Code of cs.mm.App

/* Author: Maer Melo
* Email: salalbr@gmail.com
* Date: 12-9-2011
*/


package cs.mm;


import cs.mm.network.Server;

/**
* Created by IntelliJ IDEA.
* User: jazzzy
* Date: 10/15/11
* Time: 4:42 PM
* To change this template use File | Settings | File Templates.
*/
public class App {
    public static void main(String[] args) {
        int port = Integer.parseInt(args[0]);

        if(args.length != 1) {
            System.out.println("Usage:\nFileServer <Port>");
            System.exit(0);
        }

        try {
            Thread server = new Thread(new Server(port));
            server.start();

            System.in.read();
        } catch (Exception e) {
            System.out.println("Error: " + e);
        }

        System.out.println("Server finished.");

    }
}
TOP

Related Classes of cs.mm.App

TOP
Copyright © 2018 www.massapi.com. 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.