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.

ClientApplication.java 304B

123456789101112
  1. package com.uqac.rthoni.com.java_rmi.client;
  2. /**
  3. * Created by robin on 9/15/16.
  4. */
  5. public class ClientApplication {
  6. public static void run(String host, int port, String inputFile, String outputFile)
  7. {
  8. System.out.println(String.format("Connecting to %1s:%2d...", host, port));
  9. }
  10. }