org.apache.commons.scaffold.http
Class SocketUtil

java.lang.Object
  extended by org.apache.commons.scaffold.http.SocketUtil

public class SocketUtil
extends Object

A shorthand way to create BufferedReaders and PrintWriters associated with a Socket.

Taken from Core Servlets and JavaServer Pages from Prentice Hall and Sun Microsystems Press, http://www.coreservlets.com/. © 2000 Marty Hall; may be freely used or adapted.


Constructor Summary
SocketUtil()
           
 
Method Summary
static BufferedReader getReader(Socket s)
          Make a BufferedReader to get incoming data.
static PrintWriter getWriter(Socket s)
          Make a PrintWriter to send outgoing data.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SocketUtil

public SocketUtil()
Method Detail

getReader

public static BufferedReader getReader(Socket s)
                                throws IOException
Make a BufferedReader to get incoming data.

Throws:
IOException

getWriter

public static PrintWriter getWriter(Socket s)
                             throws IOException
Make a PrintWriter to send outgoing data. This PrintWriter will automatically flush stream when println is called.

Throws:
IOException


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.