Guest User

RunHost.java

a guest
Jun 19th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import java.io.IOException;
  2. import java.io.ObjectOutputStream;
  3.  
  4. public class RunHost {
  5. public static void main(String[] args) throws IOException {
  6. Host host = new Host();
  7. ObjectOutputStream out = host.getOut();
  8. out.writeObject("host sending");
  9. out.flush();
  10. }
  11. }
Add Comment
Please, Sign In to add comment