Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }