All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.ri.js.server.Main Maven / Gradle / Ivy

package ch.ri.js.server;



public class Main {

	/**
	 * @param args
	 * @throws Exception 
	 */
	public static void main(String[] args) throws Exception
	{

		if (args.length != 1)
		{
			System.out.println("java -jar server [PORT]");
		}
		
		HTTPServer server = new HTTPServer( Integer.parseInt(args[0]) );
		server.start();
		
		System.in.read();
		
		server.stop();
		
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy