You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ServerApplication.java 345B

12345678910111213
  1. package com.uqac.rthoni.com.java_rmi.server;
  2. /**
  3. * Created by robin on 9/15/16.
  4. */
  5. public class ServerApplication {
  6. public static void run(int port, String sourceDir, String classDir, String logFile)
  7. {
  8. String ip = "0.0.0.0";
  9. System.out.println(String.format("Listening for clients on %1s:%2d...", ip, port));
  10. }
  11. }