Advertisement
Martina312

App

Apr 20th, 2020
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. package ispitna;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class App {
  6.  
  7.     public static void main(String[] args) throws IOException {
  8.         Server server = new Server(3398, "results.txt");
  9.         server.start();
  10.  
  11.         Client client1 = new Client("localhost", 3398, "C:\\Users\\Martina\\Desktop\\Софтверско инж", "C:\\Users\\Martina\\Desktop");
  12.         client1.start();
  13.  
  14.         Client client2 = new Client("localhost", 3398, "C:\\Users\\Martina\\Downloads", "C:\\Users\\Martina\\Desktop\\Оперативни системи");
  15.         client2.start();
  16.  
  17.  
  18.  
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement