home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / net / networkclient.java < prev    next >
Text File  |  1995-08-11  |  2KB  |  74 lines

  1. /*
  2.  * @(#)NetworkClient.java    1.15 95/05/12 Jonathan Payne
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19. package net;
  20.  
  21. import net.*;
  22. import java.io.*;
  23. import net.www.html.URL;
  24.  
  25. /**
  26.  * This is the base class for network clients.
  27.  *
  28.  * @version    1.15, 12 May 1995
  29.  * @author    Jonathan Payne
  30.  */
  31. public class NetworkClient {
  32.     /** Socket for communicating with server. */
  33.     protected Socket    serverSocket = null;
  34.  
  35.     /** Stream for printing to the server. */
  36.     public PrintStream    serverOutput;
  37.  
  38.     /** Buffered stream for reading replies from server. */
  39.     public InputStream    serverInput;
  40.  
  41.     /** Open a connection to the server. */
  42.     public void openServer(String server, int port) {
  43.     if (serverSocket != null)
  44.         closeServer();
  45.     serverSocket = new Socket(server, port);
  46.     serverOutput = new PrintStream(new BufferedOutputStream(serverSocket.outputStream),
  47.                        true);
  48.     serverInput = new BufferedInputStream(serverSocket.inputStream);
  49.     }
  50.  
  51.     /** Close an open connection to the server. */
  52.     public void closeServer() {
  53.     if (! serverIsOpen()) {
  54.         return;
  55.     }
  56.     serverSocket.close();
  57.     serverSocket = null;
  58.     serverInput = null;
  59.     serverOutput = null;
  60.     }
  61.  
  62.     /** Return server connection status */
  63.     public boolean serverIsOpen() {
  64.     return serverSocket != null;
  65.     }
  66.  
  67.     /** Create connection with host <i>host</i> on port <i>port</i> */
  68.     public NetworkClient(String host, int port) {
  69.     openServer(host, port);
  70.     }
  71.  
  72.     public NetworkClient() {}
  73. }
  74.