Guest User

Untitled

a guest
Jan 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. mySocket = new Socket(host,Integer.parseInt(port));
  2. out = new ObjectOutputStream(mySocket.getOutputStream());
  3. out.flush();
  4. in = new ObjectInputStream(mySocket.getInputStream());
  5. listenerThread = new Listener();
  6. listenerThread.start();
Add Comment
Please, Sign In to add comment