Constructors

Methods

  • Returns true when all the data from the stream has been read else it returns false.

    Returns boolean

    true when all data for this particular request has been read, otherwise returns false.

    Since

    Servlet 3.1

  • Returns true if data can be read without blocking else returns false.

    Returns boolean

    true if data can be obtained without blocking, otherwise returns false.

    Since

    Servlet 3.1

  • Reads the input stream, one line at a time. Starting at an offset, reads bytes into an array, until it reads a certain number of bytes or reaches a newline character, which it reads into the array as well.

    This method returns -1 if it reaches the end of the input stream before reading the maximum number of bytes.

    Parameters

    • b: number[]

      an array of bytes into which data is read

    • off: number

      an integer specifying the character at which this method begins reading

    • len: number

      an integer specifying the maximum number of bytes to read

    Returns number

    an integer specifying the actual number of bytes read, or -1 if the end of the stream is reached

    Exception

    IOException if an input or output exception has occurred