| java.lang.Object java.io.InputStream com.lutris.appserver.server.httpPresentation.HttpPresentationInputStream
All known Subclasses: com.lutris.appserver.server.httpPresentation.servlet.ServletHttpPresentationInputStream,
HttpPresentationInputStream | abstract public class HttpPresentationInputStream extends InputStream (Code) | | HTTP request input stream reader.
|
Method Summary | |
public void | close() | abstract public int | readLine(byte[] b, int off, int len) Starting at the specified offset, reads into the given array of
bytes until all requested bytes have been read or a '\n' is
encountered, in which case the '\n' is read into the array as well. |
readLine | abstract public int readLine(byte[] b, int off, int len) throws IOException(Code) | | Starting at the specified offset, reads into the given array of
bytes until all requested bytes have been read or a '\n' is
encountered, in which case the '\n' is read into the array as well.
Parameters: b - the buffer into which the data is read Parameters: off - the start offset of the data Parameters: len - the maximum number of bytes to read the actual number of bytes read, or -1 if the end of thestream is reached exception: IOException - if an I/O error has occurred |
|
|