JSP built-in object values out object and some common methods of it

Source: Internet
Author: User

Out object:

An Out object is an instance of the JspWriter class and is an object commonly used to output content to the client.

Common methods are as follows:

void println () prints a string to the client

void Clear () clears the contents of the buffer and throws an exception if called after flush

void Clearbuffer (); Clears the contents of the buffer if the call does not throw an exception after flush

void Flush () outputs the buffer contents to the client

int GetBufferSize () returns the buffer in the size of the number of bytes, or 0 if no buffer is set

int getremaining () returns how much of the buffer is left available

Boolean Isautoflush () returns whether the buffer is full, automatically emptied or throws an exception

void Close () to close the output stream

int allbuf=out.getbuffersize (); Gets the size of the buffer
int remainbuf=out.getremaining ();//Gets the size of the remaining buffer
int usedbuf=allbuf-remainbuf;//already used buffer

JSP built-in object values out object and some common methods of it

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.