Guest User

Untitled

a guest
Jan 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.     public static void main(String[] args) {
  2.         try {
  3.             if (args.length == 3) {
  4.                 new HelloUDPClient(args[0], Integer.parseInt(args[1]), args[2]);
  5.             } else {
  6.                 System.out.println("Wrong arguments");
  7.             }
  8.         } catch (Exception e) {
  9.             System.out.println(e.getMessage());
  10.         }
  11.  
  12.     }
Add Comment
Please, Sign In to add comment